https://github.com/danigb/clox
https://github.com/danigb/clox
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/danigb/clox
- Owner: danigb
- Created: 2021-09-12T12:07:09.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-09-12T17:10:56.000Z (almost 5 years ago)
- Last Synced: 2024-12-27T11:41:36.764Z (over 1 year ago)
- Language: C
- Size: 29.3 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# clox
> A bytecode virtual machine implemented in C
https://craftinginterpreters.com/a-bytecode-virtual-machine.html
- [x] 14 Chunks of Bytecode
- [x] 15 A Virtual Machine
- [x] 16 Scanning on Demand
- [x] 17 Compiling Expressions
- [x] 18 Types of Values
- [x] 19 Strings
- [ ] 20 Hash Tables
- [ ] 21 Global Variables
- [ ] 22 Local Variables
- [ ] 23 Jumping Back and Forth
- [ ] 24 Calls and Functions
- [ ] 25 Closures
- [ ] 26 Garbage Collection
- [ ] 27 Classes and Instances
- [ ] 28 Methods and Initializers
- [ ] 29 Superclasses
- [ ] 30 Optimization