kuroko-lang / kuroko

Dialect of Python with explicit variable declaration and block scoping, with a lightweight and easy-to-embed bytecode compiler and interpreter.
https://kuroko-lang.github.io/
MIT License
427 stars 25 forks source link

Allow up to 48 bits for storage of 'int' types #19

Closed klange closed 2 years ago

klange commented 2 years ago

Currently, int values are restricted to 32 bits. This is problematic for dealing with unsigned 32-bit values. Ultimately, I want to introduce arbitrary precision integers ('big ints'), but as a stop-gap measure we have an addition 16 bits available in our value type.