rustpython 0.1.0

A python interpreter written in rust.
1
2
3
4
5
6
7
8
9
10
11
12
list1 = ["a", "b",]
list2 = [
    "a",
    "b",
]
assert list1 == list2

dict1 = {"a": "b",}
dict2 = {
    "a": "b",
}
#assert dict1 == dict2