nessa-language 0.9.1

An extensible programming language with a strong type system
Documentation
1
2
3
4
5
6
unary postfix op "++" (5000);

op (n: @Int) ++ -> @Int {
    n.inc();
    return n;
}