I built AAYU — a programming language, from the ground up 🚀
Not a wrapper. Not a framework. A real language: lexer → parser →
semantic analysis → IR (HIR/MIR/LIR) → bytecode → runtime.
Two ways to run it:
-
aayu run→ VM, instant start, great for learning -
aayu build→ compiles through C + gcc -O3 into a real native binary
Measured it myself, no marketing numbers:
fib(30) → native: ~29ms | Python 3.12: ~78ms
That's real, reproducible, ~2-3x faster than Python on number-heavy code.
Built the compiler pipeline, the VM, the native backend, the CLI —
all of it, solo. AI tools helped me write code faster. They didn't
design the architecture or make the decisions — I did. Same as any
dev using an IDE with autocomplete.
v1.0 is out. It's young — bugs exist, I'm not hiding that. But the
core language works, and I'm fixing it in public.
repo: github.com/Minato95-ayu/INTENT-TO-SILICON
site: intent-to-silicon.vercel.app
Try it. Break it. Tell me what's wrong. That's how it gets better.
Top comments (0)