An open API service indexing awesome lists of open source software.

https://github.com/programadorthi/crafting-interpreters

Exercise from the book "Crafting Interpreters"
https://github.com/programadorthi/crafting-interpreters

Last synced: 10 days ago
JSON representation

Exercise from the book "Crafting Interpreters"

Awesome Lists containing this project

README

          

# crafting-interpreters
Exercise from the book "Crafting Interpreters"

## Compiling

```kotlin
kotlinc -include-runtime -d lox.jar kotlin
```

## Running

```kotlin
java -jar lox.jar
```