https://github.com/omarazizi/mylox
Multi-Paradigm Transpiled (e.g. source to source) general-purpose programming language that translates to Java at runtime along with it's interpreter
https://github.com/omarazizi/mylox
crafting-interpreters interpreter java programming-language
Last synced: about 2 months ago
JSON representation
Multi-Paradigm Transpiled (e.g. source to source) general-purpose programming language that translates to Java at runtime along with it's interpreter
- Host: GitHub
- URL: https://github.com/omarazizi/mylox
- Owner: OmarAzizi
- Created: 2024-02-06T00:08:51.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-06T00:50:28.000Z (over 2 years ago)
- Last Synced: 2025-01-31T00:17:12.125Z (over 1 year ago)
- Topics: crafting-interpreters, interpreter, java, programming-language
- Language: Java
- Homepage:
- Size: 16.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MyLox

MyLox is a Tree-Walk interpreter implementation in Java for Lox programming language based on the book "[Crafting Interpreters](https://craftinginterpreters.com/)" by Robert Nystrom.
## About Lox
Lox is a high-level, dynamically-typed programming language with automatic memory management (Garbage Collection), and support for object-oriented features like inheritance.