Metadata-Version: 2.4
Name: prasad-lang
Version: 0.3.0
Summary: Prasad Programming Language CLI
Author: Prasad Kadam
Keywords: language,interpreter,repl,lexer,parser
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

<p align="center">
  <img src="logo.png" alt="Prasad logo" width="128" />
</p>

## prasad-lang

Prasad is a small experimental programming language with a CLI.

### Install (PyPI)

```bash
pip install -U prasad-lang
```

### Install (local)

```bash
pip install .
```

### Usage

Run a file:

```bash
prasad path/to/file.prasad
```

Start the REPL:

```bash
prasad
```

## VS Code Syntax Highlighting (Keywords + Comments)

The repository includes a minimal VS Code syntax package under `vscode-prasad-syntax/`.

To use it:

1. Open VS Code and run **Command Palette → Extensions: Install from VSIX...**
2. Select `vscode-prasad-syntax` and install.
3. Open a `.prasad` file; VS Code will highlight keywords, strings, numbers, and comments.

(If you don't want to install the extension, you can still edit `.prasad` files as plain text.)

### VS Code File Icon (optional)

The VS Code extension also includes a simple file icon theme for `.prasad` files. To enable it:
1. Open **Command Palette → Preferences: File Icon Theme**
2. Select **Prasad Icons**

If you updated from an older VSIX and **Prasad Icons** doesn’t appear, uninstall the extension, reload VS Code, and reinstall the latest VSIX (`vscode-prasad-syntax/prasad-syntax-0.1.1.vsix`).
