2019-03-08 07:47:28 +00:00
|
|
|
# jorts
|
|
|
|
|
2019-06-02 03:02:37 +00:00
|
|
|
a compiler for the lox language from https://craftinginterpreters.com
|
2019-03-09 19:54:47 +00:00
|
|
|
|
2019-06-02 03:02:37 +00:00
|
|
|
this is a learning project. the implemtation is based heavily off the C part
|
|
|
|
of the book, but also the Java part for the scanner.
|
|
|
|
|
|
|
|
## notes
|
|
|
|
|
|
|
|
- jorts' lox bytecode is not compatible with any implementation.
|
|
|
|
|
|
|
|
## how do?
|
|
|
|
|
|
|
|
```
|
|
|
|
zig build run
|
|
|
|
```
|
|
|
|
|
|
|
|
and play around with it
|