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

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

Awesome Lists containing this project

README

          

# MyLox
![Java](https://img.shields.io/badge/java-%23ED8B00.svg?style=for-the-badge&logo=openjdk&logoColor=white)

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.