Nov 17, 2003 ------------- - Introduction to Smalltalk - demo of environment - In Smalltalk - everything is an object! - including the windows, environment etc. - Working with squeak - create a local "image" of everything in your own directory - Basic concepts - Workspace window - Transcript window - Communicating between windows - Transcript show: 'hello' - Transcript show: cr - 2+3 etc. arithmetic expressions are really messages sent to objects - browsing through existing classes in the Browser - Went through tutorial at: http://squeak.org/tutorials/cphoenix_tutorial/intro.html - defining member functions hello 1 to: 5 do: [:i | (Transcript show: 'Hello World') cr] - a := FillInTheBlank request: 'What is your favorite, Justin?'