rustpython 0.1.0

A python interpreter written in rust.
1
2
3
4
5
6
word = 'Python'
assert 'P' == word[0]  # character in position 0
assert 'n' == word[5]  # character in position 5
assert 'n' == word[-1]  # last character
assert 'o' == word[-2]  # second-last character
assert 'P' == word[-6]