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
fn fib(n) = if n < 2 { n } else { fib(n - 1) + fib(n - 2) }
println(fib(30))