SquareBracketAssociates / NewPharoByExample9

The PharoByExample9 repository since to have a broken history. Now the book versioning is moved to this repository to get work done.
10 stars 8 forks source link

Chapter 16 #2

Open mr-Serg opened 2 years ago

mr-Serg commented 2 years ago

p. 229

p. 231

p. 239 "to make the halo appear and grab either the brown move handle or the black pickup handle at the top of the morph" the brown move handle is ungrabable :(

p.240

p. 243 "Let’s create a specific subclass of Morph, named DroppedMorph, so we can experiment a bit more. Let us define a new kind of morph called DroppedMorph." Two times the same idea.

p. 246 "((aNumber isInteger and: [ aNumber > 0 ]) and: [ aNumber <= 9 ])" should be "(aNumber isInteger and: [ aNumber > 0 and: [ aNumber <= 9 ] ])" according to Pharo recommendation.