roto 0.11.0

a statically-typed, compiled, embedded scripting language
Documentation
1
2
3
4
5
6
7
8
filtermap main(x: u32) {
    let a = 5;
    if a == x {
        accept
    } else {
        reject
    }
}