9 lines
164 B
Text
9 lines
164 B
Text
decl string s1 s2
|
|
# make s1 contain "hello "
|
|
set s1 "hello "
|
|
|
|
# set s2 to contain s1 and "world"
|
|
set s2 (+ s1 "world")
|
|
|
|
# outputs "hello world"
|
|
out s2 endl console
|