Metadata-Version: 2.4
Name: TNLang
Version: 1.0.9
Summary: A pip package to use the programing language TNLang from floxxy0
Author: floxxy0
Requires-Python: >=3.10
Description-Content-Type: text/markdown

## Start?
You can start by creating a python file with content:
```python
import TNLang

TNLang.launch("MyCode.tnlang")
```


## Example TNLang codes.
### Hello World!
```
echo("Hello World!")
```

### Countdown
```
echo("3")
wait(1)
echo("2")
wait(1)
echo("1")
wait(1)
echo("Done.")
```

### Loop
```
loop.10(echo("Loop!"))
echo("Loop Done!")
```
