Add `--turbo-draw` option which removes the delay between drawing operations
0.7.1
Fix ImportError
0.7.0
Made a decorator that attempts to fix floating point arithmetic errors within a function. On by default, but can be disabled with the `--no-fix-floating-point` flag. May still be unstable, as this feature hasn't been fully tested yet. Will fix any errors that come up
Example: py Without fix:
0.6.4
Fix lists that use subscripts (L₃) and improve automatic decompile detection.
0.6.2
Slight improvement to implicit multiplication support
A(3) -> A*(3) a(3) -> a(3) - will only add multiplication if the preceding token is capital, since that is a variable
0.6.1
Re-implement implicit multiplication support in a way that mostly works.