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