6 lines
64 B
Vala
6 lines
64 B
Vala
|
|
void main() {
|
||
|
|
string x = "foo";
|
||
|
|
x += "bar\n";
|
||
|
|
print(x);
|
||
|
|
}
|