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"
- Host: GitHub
- URL: https://github.com/programadorthi/crafting-interpreters
- Owner: programadorthi
- License: mit
- Created: 2026-03-02T22:44:57.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-03-04T21:01:22.000Z (4 months ago)
- Last Synced: 2026-03-05T03:05:30.522Z (4 months ago)
- Language: Kotlin
- Size: 3.91 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```