Files
vala-examples/01_first_program/helloworld.vala
2023-02-26 00:50:25 +09:00

10 lines
152 B
Vala

class HelloWorld {
public static int main(string[] args) {
string str = "Hello, World\n";
stdout.printf(str);
return 0;
}
}