DEV Community

Rahul kuzur
Rahul kuzur

Posted on

Kuzur Programming Language

πŸš€ 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")

---




Enter fullscreen mode Exit fullscreen mode

Top comments (0)