Added range evaluation and more operators

This commit is contained in:
2023-02-21 19:48:37 +02:00
parent e9c0731d7e
commit 973d3eab2b
4 changed files with 18 additions and 4 deletions

View File

@ -49,6 +49,10 @@ OPERATORS = {
"*": operator.mul,
"/": operator.truediv,
"%": operator.mod,
"|": operator.or_,
"&": operator.and_,
"<<": operator.ilshift,
">>": operator.irshift
}