Metadata-Version: 2.4
Name: riddz
Version: 1.0.1
Summary: A friendly Hinglish scripting language for the next generation of developers.
Author: Riddhi Dhawan
License: MIT
Project-URL: Homepage, https://pypi.org/project/riddz/
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Dynamic: requires-python

# 🕉️ Riddz - The Hinglish Scripting Language

**Riddz** is a lightweight, intuitive scripting language designed for Hinglish speakers. It blends the logic of programming with the natural flow of Hindi-English conversation.

## 🚀 Features
- **Hinglish Syntax**: Use keywords like `agar`, `warna`, `kaam`, and `dikhao`.
- **Inclusive Aliases**: Multiple synonyms for commands (`banao` / `kaam`, `maan` / `rakho`).
- **Friendly Errors**: Errors that talk to you in Hinglish!
- **Fast & Minimal**: Built on Python for portability and speed.
- **Arrays Included**: Native support for lists ("Sabzi Mandi").

## 🛠️ Installation
Install Riddz directly from PyPI:
```bash
pip install riddz
```

## 💻 Quick Start
Create a file named `hello.rdz`:
```text
rakho naam = pucho("Aapka naam kya hai? ");
dikhao "Namaste " + naam + "!";

rakho sabzi_mandi = ["Aloo", "Pyaz", "Bhindi"];
dikhao "Mandi mein aaj ye hain: " + sabzi_mandi;

agar (naam == "Riddhi") {
    dikhao "Swaagat hai Ma'am!";
} warna {
    dikhao "Hello bhai!";
}
```

Then run it:
```bash
riddz hello.rdz
```

## 📝 Syntax Cheat Sheet
| English | Riddz (Hinglish) |
| :--- | :--- |
| Variable | `maan` / `rakho` |
| Print | `dikhao` / `bolo` |
| Input | `pucho` |
| Function | `kaam` / `banao` |
| If / Else | `agar` / `warna` |
| While | `jabtak` |
| Return | `wapas` |
| True / False | `sach` / `sahi` / `galat` |

## 🤝 Contributing
Riddz is an open-source project. Feel free to contribute more Hinglish keywords or features!

---
Built with ❤️ by Riddhi Dhawan.
