π Introducing Kuzur: A Minimalist Python-Inspired Programming Language
Hey Devs π
Iβve been working on a new side project, and Iβm super excited to finally share it with you β Kuzur Programming Language π
π‘ Why Kuzur?
Kuzur is a simple, Python-inspired language that aims to help beginners learn programming while still being powerful enough for experiments.
β¨ Features
β
Dynamic variables
β
Conditional statements (if
, elif
, else
)
β
Loops (while
, for
, do-while
)
β
Functions with func
β
Built-in functions (print
, input
, len
, int
, str
)
β
C-style block syntax { }
and //
comments
β
Works on Windows & Linux (no Python required!)
π GitHub Repository
π Check out Kuzur on GitHub
π Example Code
kuzur
func greet(name) {
print("Hello, " + name)
}
greet("World")
---
Top comments (0)