7 lines
108 B
Nim
7 lines
108 B
Nim
|
|
var str, str1 = "String"
|
||
|
|
echo(str & " literal.")
|
||
|
|
str1 = str1 & " literal."
|
||
|
|
echo(str1)
|
||
|
|
|
||
|
|
# -> String literal.
|