Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shiinamiyuki/lunatic
lunatic: a toy lua interpreter
https://github.com/shiinamiyuki/lunatic
compiler interpreter parser practice-project programming-language register-machine virtual-machine
Last synced: 27 days ago
JSON representation
lunatic: a toy lua interpreter
- Host: GitHub
- URL: https://github.com/shiinamiyuki/lunatic
- Owner: shiinamiyuki
- License: mit
- Created: 2018-06-30T08:32:33.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-28T04:46:56.000Z (over 4 years ago)
- Last Synced: 2024-08-04T02:10:55.969Z (4 months ago)
- Topics: compiler, interpreter, parser, practice-project, programming-language, register-machine, virtual-machine
- Language: C++
- Homepage:
- Size: 21.8 MB
- Stars: 18
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- AwesomeCppGameDev - lunatic
README
# lunatic
A toy interpreter for luaSupports if, else, while, function, recursion, metatable.
Simple mark-sweep GC.
Running on a register based VM.
Some what 2x slower than official lua.
Future plan:
Serialize C++ objects into lunatic
Integrate into MiyukiRenderer