Vala

From Mario Fan Games Galaxy Wiki
Revision as of 09:17, 4 October 2009 by Hohoo (talk | contribs)
Vala
Kermit.gif
Basics
Intermediate
none
Advanced
none
Add to this template
 Stub.png This article or section is in need of expansion.

Please add further information.


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;
    }
}

See also