Hello world!

using GLib;

public class Test.HelloObject : GLib.Object {

    public static int main(string[] args) {

        stdout.printf("Hello, World");

        return 0;
    }
}

Leave a comment