mirror of
https://github.com/gnustep/libs-steptalk.git
synced 2025-02-23 11:31:01 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/steptalk/trunk@13642 72102866-910b-0410-8b05-ffd578937521
19 lines
366 B
Smalltalk
19 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), '!').
|
|
]
|