// an interpreter, hand-crafted
YourLang is a lightweight interpreted language built from the ground up. Fast, readable, and built by one person who wanted to understand how it all works.
What it does
01
Parses source into an AST and walks it directly. Simple to debug, easy to extend.
02
Variables carry type at runtime. No annotations needed — just write code.
03
Functions are values. Pass them, return them, store them.
04
Java