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
def run():
    total = 0
    for i in range(2000):
        for j in range(2000):
            total += (i * j) % 7
    return total
print(run())