roto 0.10.0

a statically-typed, compiled, embedded scripting language
Documentation
1
2
3
4
5
6
7
filtermap main(v: Vec2) {
    if v.x() > 10 {
        accept 2 * v.x()
    } else {
        reject
    }
}