roto 0.10.0

a statically-typed, compiled, embedded scripting language
Documentation
1
2
3
4
5
6
7
8
fn bar(x: i32) -> i32 {
    import pkg.double;
    let a = super.double(x);
    let b = pkg.double(a);
    let c = double(b);
    c
}