Keyword methods

    (i <= 7) 
          ifTrue: [ m:= "oke" ]
          ifFalse: [ ... ]
  

Control structures

  • conditional -- ifTrue: ifFalse:
  • iteration -- whileTrue:
  • looping -- to: by: do: [ :i | ... ]

slide: Smalltalk -- control