8 lines
107 B
Text
8 lines
107 B
Text
|
|
[indent=4]
|
||
|
|
/* String append, in Genie */
|
||
|
|
init
|
||
|
|
str:string = "Hello"
|
||
|
|
str += ", world"
|
||
|
|
|
||
|
|
print str
|