ospl 0.0.15

the (UNFINISHED!!!) OSPL programming language
Documentation
1
2
3
4
5
6
7
8
9
10
{
    def o = obj {
        a: "hi"
        f: fn(?me) {
            print me;
        }
    };

    print o.a;
}