nessa-language 0.9.1

An extensible programming language with a strong type system
Documentation
1
2
3
4
5
6
// Too many stack frames (max. of 100000)
fn test() -> Int {
    return 1 + test();
}

test();