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

## All Functions.
echo("hi") - Print something in the console.

wait(1) - Wait a second before the next action happens.

loop.10(echo("hi")) - Loop a action 10 times.

## 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!")
```
