5 lines
87 B
Text
5 lines
87 B
Text
text s = "hello"
|
|
write(s)
|
|
writeLine(" literal")
|
|
text s2 = s + " literal"
|
|
writeLine(s2)
|