libs-steptalk/Examples/Smalltalk/selector.st

28 lines
261 B
Smalltalk
Raw Normal View History

" Selector example "
[|
main
self performSelector:#hello.
^nil
!
hello
| b |
Transcript showLine:'Hello!'.
^self
!
hello2
Transcript showLine:'Hello!'.
^self
!
hello3
|a|
Transcript showLine:'Hello!'.
^self
]