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

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

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

## All Functions.
- echo("hi") - Print something in the console.
- wait(1) - Wait a second before the next action happens.
- loop.10(echo("hi")) - Loop an action 10 times.

## Packages.
### colors
```
importPackage colors

echo.red("Red text!")
echo.green("Green text!")
echo.blue("Blue text!")
echo.yellow("Yellow text!")
echo.cyan("Cyan text!")
echo.magenta("Magenta text!")
echo.white("White text!")
```

### DiscordWebHook
```
importPackage DiscordWebHook

discord.webhook("webhook-url", "Message with\nnew line")
```

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