rustpython 0.1.0

A python interpreter written in rust.
1
2
3
4
5
6
7
8
9
10
# This is used by import.py; the two should be modified in concert

X = '123'
Y = 'abc'

def func():
    return X

def other_func():
    return Y