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
def fib(n):
    return n if n < 2 else fib(n - 1) + fib(n - 2)
print(fib(30))