mirror of
https://github.com/gnustep/libs-steptalk.git
synced 2025-02-23 19:40:55 +00:00
20 lines
366 B
Smalltalk
20 lines
366 B
Smalltalk
|
" hello.st
|
||
|
|
||
|
Ussage:
|
||
|
stexec hello.st name
|
||
|
"
|
||
|
|
||
|
((Args count) < 1 )
|
||
|
ifTrue:
|
||
|
[
|
||
|
Transcript showLine:'Hello ... who?'
|
||
|
]
|
||
|
ifFalse:
|
||
|
[
|
||
|
" See ..../Library/StepTalk/Environments/Foundation-operators.stenv
|
||
|
or Source/Environments/Foundation-operators.stenv
|
||
|
"
|
||
|
|
||
|
Transcript showLine: ('Hello ', (Args @ 0), '!').
|
||
|
]
|