Releases: bayerf42/Lox68k
Releases · bayerf42/Lox68k
V1.6
- Dynamic variables
- Debug and (faster and smaller) non-debug versions
- Documentation of all extensions
- Top-level expressions
- Many optimizations and fixes
V1.5
- Many fixes and optimizations
- Exception handling
break
statement
if
expression
- new natives
disasm
, join
, class_of
, parent
- better IDE68k emulator support
- Railroad syntax diagrams
v1.4.0
New 'case' statement.
Many fixes and improvements.
Lox68k V1.3
- Many optimizations
- Standard library
- More documentation
V1.2
Support for floating point numbers.
Hashtable iterators.
v1.1
Added varargs.
The last parameter in a function may be prefixed by ..
and will receive a list of remaining arguments when being called.
OTOH, when calling a function, the ..
prefix splices a list as arguments onto the stack.
Add lambdas.
Minor fixes, add lambdas.