Vala
From Mario Fan Games Galaxy Wiki
| Vala |
|---|
| Basics |
| Intermediate |
| none |
| Advanced |
| none |
| Add to this template |
Vala is a programming language with a syntax similar to C#.
Hello World example
This example is from the official Vala site.
using GLib;
public class Test.HelloObject : GLib.Object {
public static int main(string[] args) {
stdout.printf("Hello, World\n");
return 0;
}
}