nessa-language 0.9.1

An extensible programming language with a strong type system
Documentation
1
2
3
4
5
6
7
8
9
fn test(i: Int) -> Int {
    if i == 0 {
        return 0;
    }

    return 1 + test(i - 1);
}

test(10000);