🚀 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)