finx 0.1.0

A fast, lightweight embeddable scripting language
Documentation
1
2
3
4
5
6
7
let x = 5;

fn foo(y) {
    return x + y;
}

print(foo(2))