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
20 lines
288 B
Smalltalk
20 lines
288 B
Smalltalk
" talkToServer.stalk
|
|
|
|
Server script example
|
|
|
|
Ussage:
|
|
stalk Server talkToServer.st [message]
|
|
"
|
|
| message |
|
|
|
|
((Args count) < 1 )
|
|
ifTrue:
|
|
[
|
|
message := 'Hello!'. ^0
|
|
]
|
|
ifFalse:
|
|
[
|
|
message := Args objectAtIndex: 0. ^0
|
|
].
|
|
|
|
Server say:message
|