nessa-language 0.9.1

An extensible programming language with a strong type system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
let var = 3;

let res = do {
    if var > 2 {
        return 5;
    }

    return 2;
};

if res != 5 {
    panic("This should not happen");
}