Metadata-Version: 2.3
Name: landaulang
Version: 0.1.0
Summary: Small 'home' programming language (name is given in honor of soviet scientist Lev D. Landau)
License: MIT
Author: alexeev-prog
Author-email: alexeev.dev@mail.ru
Requires-Python: >=3.9
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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: Programming Language :: Python :: 3.13
Requires-Dist: aiohttp (>=3.11.12,<4.0.0)
Requires-Dist: click (>=8.1.8,<9.0.0)
Requires-Dist: rich (>=13.9.4,<14.0.0)
Requires-Dist: sly (>=0.5,<0.6)
Description-Content-Type: text/markdown

# landau-language
Small 'home' programming language (name is given in honor of soviet scientist Lev D. Landau)

## Install

```bash
pip3 install landaulang
```

## Example

```landau
function main() {
	println "Hello, Landau!";
}
```

## Exec
While Landau only converts the code into the Python code to execute

```bash
landaulang exec examples/helloworld.landau
```

