4 lines
71 B
Text
4 lines
71 B
Text
var s = "Hello, "
|
|
var t = s + "world!"
|
|
System.print(s)
|
|
System.print(t)
|