You don't need to be a programmer to use TechScript.
Just follow the steps below for your operating system!
- Download
TechScript-Setup.exefrom the Releases page - Double-click it to run the installer
- Follow the on-screen steps (it sets up everything automatically — PATH, file icons, and VS Code extension)
- Open PowerShell or Command Prompt and type:
tech run examples/hello.txs
- Done! Your first TechScript program just ran. 🎉
Open Terminal and paste this one command:
curl -fsSL https://raw.githubusercontent.com/your-org/techscript/main/scripts/install.sh | bashAfter install, test it:
tech run examples/hello.txsOpen a terminal and paste:
curl -fsSL https://raw.githubusercontent.com/your-org/techscript/main/scripts/install.sh | bashOr if you have pip:
pip install techscriptThen:
tech run examples/hello.txspkg install python
pip install techscript
tech run examples/hello.txsCreate a file called hello.txs and write:
say "Hello, World!"
say "I am learning TechScript!"
Run it with:
tech run hello.txs
use web
make page = WebPage("My First Website")
page.style("body", { "background": "#111", "color": "white", "font-family": "sans-serif" })
page.body([
page.h1("Welcome to My Website"),
page.p("Built 100% in TechScript — no HTML or CSS needed!")
])
page.run()
Run it:
tech run my_site.txs
Your browser opens automatically! 🚀
| Command | What it does |
|---|---|
tech run file.txs |
Run a TechScript file |
tech check file.txs |
Check for errors without running |
tech repl |
Interactive coding mode (like a calculator) |
tech version |
Show version |
tech transpile file.txs |
Convert to Python |