https://github.com/thejchap/zfixlang
simple interpreter for prefix expressions
https://github.com/thejchap/zfixlang
interpreter zig
Last synced: about 1 year ago
JSON representation
simple interpreter for prefix expressions
- Host: GitHub
- URL: https://github.com/thejchap/zfixlang
- Owner: thejchap
- Created: 2025-04-03T06:49:30.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-08T23:45:19.000Z (about 1 year ago)
- Last Synced: 2025-04-09T15:16:51.022Z (about 1 year ago)
- Topics: interpreter, zig
- Language: Zig
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# zfixlang
a simple interpreter for prefix expressions in zig to get a feel for the language. implemented with both ast generation as well as just a single pass through the string
syntax:
```
(+ 1 1)
(* 2 (+ 42 1))
```
## resources
-
-