Metadata-Version: 2.2
Name: gagan-lang
Version: 0.4
Summary: The world's simplest programming language.
Home-page: https://github.com/higgn/gagan-lang
Author: Gagan
Author-email: imgaganhonor@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

# Gagan Language (.ggn)

The world's simplest programming language.

## Installation

```bash
pip install gagan-lang
```
## Usage
Create a .ggn file, e.g., hello.ggn.

Run it using:

```bash

gagan hello.ggn
```
## Syntax

gprint "text": Print to console.
gscan variable: Read input.
Example


```
gprint "Hello, World!"
```
```
gscan name
```
```
gprint "Welcome, " + name
```

---

### **3. How to Run**
1. Clone the repo:
   ```bash
   git clone https://github.com/higgn/gagan-lang.git
   ```
   ```
   cd gagan-lang
   ```
Install the package:
```
pip install .
```
Run the example:
```
gagan examples/hello.ggn
```
