rustpython 0.1.0

A python interpreter written in rust.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
x = 0
if 1 == 1:
    x += 5
else:
    x += 3

assert x == 5

y = 0
if 1 == 2:
    y += 5
else:
    y += 3

assert y == 3