Metadata-Version: 2.1
Name: staxlang
Version: 0.0.0
Summary: A Stack-based ZISC interpreter written in Python
Project-URL: Homepage, https://github.com/try3d/staxlang
Project-URL: Bug Tracker, https://github.com/try3d/dashdot/staxlang
Author-email: Try3D <rsarans186@gmail.com>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

# Staxlang

A [ZISC](https://en.wikipedia.org/wiki/No_instruction_set_computing) like instruction set interpreter / language written in python

## Language Features
### Hello world
```
S1;
PUSH "Hello World" S1;
PRINT S1;
```

Output:
```
Hello World
```

### Keywords
```
PUSH
POP
PRINT
ADD
SUBT
MULT
DIV
MOD
```

## Installation
- Install `pip` from your operating system's package manager
- Run

    $ `pip install staxlang`
