9 lines
128 B
Text
9 lines
128 B
Text
|
|
decl string str
|
||
|
|
set str "hello "
|
||
|
|
|
||
|
|
# append "world" to str
|
||
|
|
set str (+ str "world")
|
||
|
|
|
||
|
|
# outputs "hello world"
|
||
|
|
out str endl console
|