rustpython 0.1.0

A python interpreter written in rust.
1
2
3
4
5
6
7
8
# Blocked on LOAD_GLOBAL
def sum(x,y):
    return x+y

def total(a,b,c,d):
    return sum(sum(a,b),sum(c,d))

assert total(1,2,3,4) == 10