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 tuple: (Int, Bool, String) = (5, true, "test");

if tuple.get_0<Int, Bool, String>() != 5 {
    panic("Invalid tuple member");
}

if tuple.get_1<Int, Bool, String>() != true {
    panic("Invalid tuple member");
}

if tuple.get_2<Int, Bool, String>() != "test" {
    panic("Invalid tuple member");
}