mirror of
https://github.com/gnustep/libs-steptalk.git
synced 2025-02-23 11:31:01 +00:00
28 lines
261 B
Smalltalk
28 lines
261 B
Smalltalk
|
" Selector example "
|
||
|
|
||
|
[|
|
||
|
|
||
|
main
|
||
|
self performSelector:#hello.
|
||
|
|
||
|
^nil
|
||
|
!
|
||
|
|
||
|
hello
|
||
|
| b |
|
||
|
Transcript showLine:'Hello!'.
|
||
|
^self
|
||
|
!
|
||
|
hello2
|
||
|
Transcript showLine:'Hello!'.
|
||
|
^self
|
||
|
|
||
|
!
|
||
|
|
||
|
hello3
|
||
|
|a|
|
||
|
Transcript showLine:'Hello!'.
|
||
|
^self
|
||
|
|
||
|
]
|