Metadata-Version: 2.1
Name: QyLang
Version: 0.0.4
Summary: Qy Lang, a Lisp language implemented in and based on Python
Home-page: https://github.com/Cosmic-Developers-Union/Qy
Author: Ge
Author-email: cosplox@outlook.com
License: Apache License 2.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Lisp
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: lark>=1.2.2

# Qy

> Warning: The project is being developed rapidly and iteratively except before version 0.1.0, there will not be a truly stable API interface and built-in operators, and it is strongly recommended that you do not use it in production.

Qy Lang, a Lisp language implemented in and based on Python.

## Install

Use pip and github:

```shell
pip3 install -U -I git+https://github.com/Cosmic-Developers-Union/Qy.git
```

or

```powershell
python -m pip install -U -I git+https://github.com/Cosmic-Developers-Union/Qy.git
```

Use PyPi:

```shell
pip3 install QyLang
```

or

```powershell
python -m pip install QyLang
```

## Usage

### Operator

- quote
- atom
- eq
- car
- cdr
- cons
- cond

### Middle Langer

```python
from qy import qy

qy.eval(print, 'Hello World!')
```
