zod
- 4 Devlogs
- 15 Total hours
Zod is an interpreted programming language built in Go
Zod is an interpreted programming language built in Go
DevLog #4 — I have added FunctionLiteral, CallExpressions, and IfExpressions. Also, updated the REPL with the parser. Now, I will start working on the Evaluation.
DevLog #3 –– Today I made significant progress on Zod’s parser. The parser can now handle: Let statements, Assignment statements, Return statements, Infix expressions, Prefix expressions, and Boolean literals. There’s still plenty of work to do, but the parser is taking shape and the language is starting to feel real. My goal with Zod remains the same: to create a programming language that puts learning first while still being capable of building interesting and practical projects.
Finally, I built the repl foundation, but the AST, parser, and eval are still left. Wish me luck….
Currently, expanding the lexer of zod. I am planning to make zod have mixed syntax between C, Go, and Rust.