ralix 0.2.0

A simple, type-safe, tree walking interpreter
1
2
3
4
5
fn factorial(int x) -> int:
    if x == 0:
        1
    else:
        x * factorial(x - 1)