Metadata-Version: 2.4
Name: rxscrite
Version: 0.1.0
Summary: RxScrite: An educational programming language
Home-page: https://github.com/rxmha125/rxscrite_project
Author: Rx MHA
Author-email: rxsocialmedia1@gmail.com
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Classifier: Topic :: Education
Classifier: Topic :: Software Development :: Interpreters
Classifier: Development Status :: 3 - Alpha
Requires-Python: >=3.8
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: license-file
Dynamic: requires-python
Dynamic: summary

# RxScrite Programming Language

![RxScrite Logo](https://github.com/rxmha125/logo/blob/main/img/logo.png?raw=true)

RxScrite is an educational programming language built with Python. It's designed to be simple and easy to understand, making it a great tool for learning the fundamentals of how programming languages work.

## Features (Current - v0.0.1)

* Basic arithmetic operations (`+`, `-`, `*`, `/`, `^`)
* Variables (dynamic typing)
* String literals
* `display()` function for output (similar to `print()`)
* `ask()` function for user input (similar to `input()`)
* Comments (`#`)

## Features (Current - v0.1.0)

* All standard arithmetic operators (`+`, `-`, `*`, `/`, `^`, `//` for integer division, `%` for modulo)
* Full set of comparison operators (`==`, `!=`, `>`, `<`, `>=`, `<=`)
* Logical operators (`and`, `or`, `not`)
* Compound assignment operators (`+=`, `-=`, `*=`, `/=`, `%=`, `^=`, `//=`)
* Variables (dynamic typing)
* String literals with basic escape sequences
* `display()` function for output
* `ask()` function for user input
* Comments (`#`)

## How to Use

After installation, you can run RxScrite scripts:

```bash
rxscrite your_script_name.rx
