6 lines
85 B
Turing
6 lines
85 B
Turing
$$ MODE TUSCRIPT
|
|
s = "Hello "
|
|
print s, "literal"
|
|
|
|
s1 = CONCAT (s,"literal")
|
|
print s1
|