I started building a small programming language called "Ahad Language" using Python as the backend.
Right now it supports:
- variables
- loops
- conditions
- custom modules
- math functions
- graphics support
- simple interpreter execution
Example syntax:
use ahad_math
store x = square(5)
show(x)
Building even a tiny interpreter taught me a lot about parsing, execution flow, and language design.
Still learning, but seeing my own syntax execute for the first time felt amazing 😄
Top comments (0)