A pip package to use the programing language TNLang from floxxy0
Project description
TNLang
A simple programming language that runs via Python.
Installation
pip install TNLang
Quick Start
Create a .tnlang file:
echo("Hello World!")
Then run it with Python:
import TNLang
TNLang.launch("program.tnlang")
Functions
| Function | Description |
|---|---|
echo("text") |
Print text to console |
wait(1) |
Wait X seconds |
loop.10(echo("text")) |
Repeat an action 1-100 times |
system.CreateFile(...) |
Create a file with content |
system.DeleteFile(...) |
Delete a file |
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!")
system
importPackage system
system.CreateFile(filename=test.txt, content="Hello")
system.DeleteFile(filename=test.txt)
Examples
Hello World
echo("Hello World!")
Countdown
echo("3")
wait(1)
echo("2")
wait(1)
echo("1")
wait(1)
echo("Done.")
Loop with colors
importPackage colors
loop.5(echo.red("Loop!"))
echo.green("Done!")
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tnlang-1.0.20rc5.tar.gz
(3.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tnlang-1.0.20rc5.tar.gz.
File metadata
- Download URL: tnlang-1.0.20rc5.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8645144ab8b6e9dcef50b6aa34d2babfa21e8a11414176c51edbd815f03c5169
|
|
| MD5 |
aab516dc16a64ed316944195f9a25296
|
|
| BLAKE2b-256 |
f24f5d4d7f228ae7b976d0c26914b3b5608230e0c3dd0cb48ef32b82b4ffa073
|
File details
Details for the file tnlang-1.0.20rc5-py3-none-any.whl.
File metadata
- Download URL: tnlang-1.0.20rc5-py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e27b0053ecf800e9298dadc1b95b135e5ecdd9d97e4a59dc944e3e3f0d2fb28
|
|
| MD5 |
6e9d718b7e7bc3f70e50a9eee33f8dcc
|
|
| BLAKE2b-256 |
cce29561b9b90c037b461c813b9ea4226c3254e504221aecda0af4014e36c77a
|