ospl 0.0.20

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

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