- Variable
- Import module (support python module)
- if, elif and else
- function
- while and for loop
- eval
- Fix code for better performance
- It process every characters
- It doesn't care about line and indent but care about semicolon
- It convert the PythonScript code to Python and execute it
# You can't do
this
print("
also this
")
but
#{
PythonScript was able to do this
}
printCon("
and also this!
");
printCon("Also semicolon is important");
printCon("While for the last line is optional")