RosettaCodeData/Task/String-append/Vala/string-append.vala

6 lines
64 B
Vala

void main() {
string x = "foo";
x += "bar\n";
print(x);
}