5 lines
92 B
Text
5 lines
92 B
Text
%string = "Hello";
|
|
echo(%string);
|
|
%other = " world!";
|
|
echo(%other);
|
|
echo(%string @ %other);
|