RosettaCodeData/Task/String-concatenation/Pike/string-concatenation.pike

5 lines
117 B
Plaintext

string hello = "hello ";
write(hello + "world" + "\n");
string all_of_it = hello + "world";
write(all_of_it + "\n");