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