6 lines
170 B
Text
6 lines
170 B
Text
text greeting = "world"
|
|
^|basic concatenation|^
|
|
writeLine("hello " + greeting)
|
|
^|changing the text in place|^
|
|
writeLine(greeting.insert(0, "hello "))
|
|
writeLine(greeting)
|