interpretthis 0.3.0

Sandboxed Python AST interpreter for untrusted and LLM-generated code
Documentation
1
2
3
4
5
6
# Pins: +=, -=, *= chain on an int variable.
x = 10
x += 5
x -= 3
x *= 2
print(x)