Metadata-Version: 2.4
Name: tamil-niral
Version: 1.0.0
Summary: A programming language with a Tamil-based command interface.
Author-email: Your Name <your.email@example.com>
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
License-File: LICENSE
Dynamic: license-file

# Tamil Niral (தமிழ் நிரல்)

Welcome to Tamil Niral, a programming language written in the Tamil script. This project is a Python-based interpreter for the language.

## Installation

You can install Tamil Niral using pip:
```bash
pip install tamil-niral
```

## How to Use

1. Create a file with a `.tn` extension (e.g., `vanakkam.tn`).
2. Write your Tamil Niral code inside.

**Example: `vanakkam.tn`**
```
# This is an example, use your language's syntax
காட்டு("வணக்கம் உலகம்!") 
```

3. Run the file from your terminal:
```bash
tamilniral vanakkam.tn
```

This will output:
```
வணக்
கம் உலகம்!
```
