8 lines
111 B
Text
8 lines
111 B
Text
|
|
/**
|
||
|
|
<doc><p>String prepend in Neko</pre></doc>
|
||
|
|
**/
|
||
|
|
|
||
|
|
var str = ", world"
|
||
|
|
str = "Hello" + str
|
||
|
|
$print(str, "\n")
|