Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gcatlin/loxy
Lox in C (A Tree-walk Interpreter)
https://github.com/gcatlin/loxy
Last synced: 2 months ago
JSON representation
Lox in C (A Tree-walk Interpreter)
- Host: GitHub
- URL: https://github.com/gcatlin/loxy
- Owner: gcatlin
- Created: 2018-02-07T00:47:33.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-17T20:03:02.000Z (almost 7 years ago)
- Last Synced: 2024-04-24T16:14:53.018Z (9 months ago)
- Language: C
- Homepage: https://www.craftinginterpreters.com/
- Size: 37.1 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- AwesomeInterpreter - loxy
README
# Loxy
Lox in C (from [Crafting Interpreters: A Tree-walk Interpreter](http://www.craftinginterpreters.com/a-tree-walk-interpreter.html))
```sh
make && ./loxy
```## Related
- [Loxy](https://github.com/gcatlin/loxy) (Lox in C, A Tree-walk Interpreter, from [Crafting Interpreters](http://www.craftinginterpreters.com/))
- [Glox](https://github.com/gcatlin/glox) (Lox in Go, A Tree-walk Interpreter, from [Crafting Interpreters](http://www.craftinginterpreters.com/))
- [Xol](https://github.com/gcatlin/xol) (Lox in C, A Bytecode Virtual Machine, from [Crafting Interpreters](http://www.craftinginterpreters.com/))
- [Xolg](https://github.com/gcatlin/xolg) (Lox in Go, A Bytecode Virtual Machine, from [Crafting Interpreters](http://www.craftinginterpreters.com/))
---
- [Tyrion](https://github.com/gcatlin/tyrion) (implementation of Ion, from [Bitwise](https://github.com/pervognsen/bitwise))
---
- [fa-vm](https://github.com/gcatlin/fa-vm) (simple VM in C, from Felix Angell)
- [simple-vm](https://github.com/gcatlin/simple-vm) (simple VM in C, from Bartosz Sypytkowski)