funct 0.1.0

A small, functional, embeddable scripting language with a fully reified bytecode VM you can pause, snapshot, and resume.
Documentation
1
2
3
4
5
6
7
8
9
10
fn run() {
    let mut total = 0
    for i in 0..2000 {
        for j in 0..2000 {
            total = total + (i * j) % 7
        }
    }
    total
}
println(run())