Metadata-Version: 2.4
Name: dumbscript
Version: 2.0.0
Summary: A fun, simplified scripting language engine.
Author-email: LemonyLou <liam.cyou@gmail.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Interpreters
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# DumbScript

DumbScript is a fun, simplified scripting language written in Python. It's designed to be easy to read and write, with a focus on simplicity and a few chaotic, fun features.

This engine can interpret `.ds` files containing DumbScript code.

## Installation

```bash
pip install dumbscript
```

## Usage

Create a script file (e.g., `hello.ds`):

```
# hello.ds
say "Hello, World!"
my_name = "DumbScript"
say "My name is {my_name}."
```

Run it from your terminal:

```bash
dumbscript hello.ds
```

## Features

DumbScript supports:
- Variables, math, and logic
- Data structures like lists and dictionaries
- Functions (recipes) and control flow
- File I/O and basic networking
- And some fun, chaotic commands like `rickroll` and `explode`!
