roto 0.10.0

a statically-typed, compiled, embedded scripting language
Documentation
1
2
3
4
5
6
7
8
fn main(x: i32) -> i32 {
    import foo.bar;
    bar(bar(x))
}

fn double(x: i32) -> i32 {
    2 * x
}