11 lines
133 B
Text
11 lines
133 B
Text
|
|
decl string s
|
||
|
|
|
||
|
|
# set s to "world"
|
||
|
|
set s "world"
|
||
|
|
|
||
|
|
# prepend "hello "
|
||
|
|
set s (+ "hello " s)
|
||
|
|
|
||
|
|
# outputs "hello world"
|
||
|
|
out s endl console
|