ospl 0.0.16

the (UNFINISHED!!!) OSPL programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
{
    def o = obj {
        a: "hi"
        b: "hi2"
        f: fn(?this) {
            print g{@this}.b;
        }
    };

    o.f(1);
    print "a\n";
}