Metadata-Version: 2.1
Name: AVOScript
Version: 0.3.0
Summary: little language just4fun
Home-page: https://github.com/ethosa/avoscript
Author: Ethosa
Author-email: social.ethosa@gmail.com
Keywords: language,avocat,avoscript,script language
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Software Development
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

<div align="center">

# AVOScript
[![carbon (3)](https://user-images.githubusercontent.com/49402667/184535093-ffdaa33d-b476-4096-8bb1-d2506f4064a3.svg)](https://github.com/Ethosa/avoscript/wiki/Available-Statements)
### little language just for fun
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/avoscript?style=flat-square)](https://pypi.project/avoscript)
[![PyPI](https://img.shields.io/pypi/v/avoscript?style=flat-square)](https://pypi.org/project/avoscript)

</div>

## Getting Started
#### Install
```bash
git clone https://github.com/ethosa/avoscipt
cd avoscript
pip install requirements.txt
```
#### Launch
```bash
python avoscript.py -h
```
flags
- `-v`/`--version` AVOScript version
  ```bash
  python avoscript.py -v
  ```
- `-i`/`--interactive` interactive mode
  ```bash
  python avoscript.py -i
  ```
- `-s`/`--script` execute script
  ```bash
  python avoscript.py -s "var a = 1; echo a;"
  ```
- `-f`/`--file` execute code from file
  ```bash
  python avoscript.py -f tests/test_code.avo
  ```

<div align="center">

| [Wiki][] | [AvailableStatements][] |
|----------|-------------------------|

</div>

[Wiki]:https://github.com/Ethosa/avoscript/wiki
[AvailableStatements]:https://github.com/Ethosa/avoscript/wiki/Available-Statements
