Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
squeak.org/Documentation overflow
Last updated at 1:41 pm UTC on 4 November 2017
All of this stuff used to be at http://squeak.org/Documentation, but was not generally useful enough to be there. So I dumped it here. – Matthew Fulmer

Exploring the Code


Also, it must be said that programmers will find quite a lot of documentation within the Squeak environment itself. When in doubt, read the code, and Smalltalk is one of the easier languages to read.
  1. There is "method source with it", which finds all methods that contain a string anywhere within their source. This is an important resource since all the source code that runs the environment is accessible in the environment itself and, since everything is a class, almost everything to find is in method source code.
  2. There is "method strings with it", which searches the string literals of all methods and returns a list of matches. This tool is useful for finding the code responsible for a menu or a window, or finding the code that is printing out some status message on Transcript.

Quick Facts



Books and Papers




Other sites



Although it has ceased publication, Squeak news still have some very interesting articles, published using Squeak itself! http://www.squeaknews.com/

Stephen Pope's site at CREATE at UCSB: http://www.create.ucsb.edu/squeak/

Comparing Smalltalk to Other Programming Languages