aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/vala/2 multiple files/main.vala
blob: 6de0fa391ea99090dd5a7e3e537ce445bc0867c1 (plain)
1
2
3
4
5
6
7
8
class MainProg : GLib.Object {

    public static int main(string[] args) {
        var c1 = new Class1();
        c1.hello();
        return 0;
    }
}