monty 0.0.20

A sandboxed, snapshotable Python interpreter written in Rust.
Documentation
1
2
3
4
5
6
7
# call-external
# External calls in subscript operations

# External call as subscript index
items = [10, 20, 30]
result = items[add_ints(0, 1)]
assert result == 20