Releases: Tcode-Motion/techscript
Release list
release-2.0.0
📌 Table of Contents
- What is TechScript?
- Why Choose It?
- Key Differentiators
- Syntax at a Glance
- Architecture Design
- Installation
- Quick Start
- Language Guide
- Standard Library & Modules
- CLI Commands
- Examples
- Editor & IDE Support
- Documentation Portal
- Roadmap
- Repo Structure
- Contributing
- Links & Social Media
- License
📖 What is TechScript?
TechScript is a general-purpose, human-first programming language designed to eliminate the syntax clutter of traditional coding. Instead of curly braces, semicolons, and cryptic operator symbols, TechScript uses a clean, keyword-based English grammar.
Under the hood, TechScript is built in Rust for safety and speed. It compiles source files into highly optimized bytecode executed on a custom stack-based Virtual Machine (VM) with NaN-boxed values and a tracing garbage collector, or can generate native code via an LLVM backend.
⚡ Why Choose It?
- Zero Clutter: Replace symbols like
{,},(,),;,&&, and||with clear keywords likedo,end,when,else,and, andor. - Ecosystem Ready: Runs everywhere (Windows, Linux, macOS, Android/Termux) and comes with full LSP support, linting, formatting, and packaging.
- Top Performance: Powered by a custom stack-based VM written in Rust. Features compile-time constant folding and AST simplifications.
📦 Key Differentiators
| Traditional Languages | TechScript's Answer | Benefit |
|---|---|---|
Syntax clutter ({}, (), ;) |
Plain-English block keywords (do/end, when) |
Fewer syntax errors and high readability |
| Bloated build dependency chains | Single toolchain executable (tsc) |
Instant setups with formatting & testing |
| Heavy memory overhead | Lightweight custom NaN-boxed stack VM | High performance and small footprint |
✒️ Syntax at a Glance
Here is a side-by-side comparison of TechScript 2.0 with JavaScript and Python:
| Feature | TechScript | JavaScript | Python |
|---|---|---|---|
| Variable | x = 10 |
let x = 10; |
x = 10 |
| Constant | const PI = 3.14159 |
const PI = 3.14159; |
PI = 3.14159 (convention) |
| Function | do greet(name)send "Hi " + nameend |
function greet(name) {return "Hi " + name;} |
def greet(name):return "Hi " + name |
| Condition | when x > 5say "Big"elsesay "Small"end |
if (x > 5) {console.log("Big");} else {console.log("Small");} |
if x > 5:print("Big")else:print("Small") |
| For Loop | for x in listsay xend |
for (let x of list) {console.log(x);} |
for x in list:print(x) |
| Try / Catch | tryres = divide(10, 0)catch errorsay errorend |
try {let res = divide(10, 0);} catch (error) {console.error(error);} |
try:res = divide(10, 0)except Exception as error:print(error) |
📐 Architecture Design
The TechScript compiler driver (tsc) processes source files through a strict pipeline:
graph TD
A[Source Code .txs] --> B[Logos-based Lexer]
B --> C[Pratt expression Parser]
C --> D[Abstract Syntax Tree AST]
D --> E[Semantic Analysis & Scope Audit]
E --> F[AST Optimizer & Constant Folder]
F --> G[IR Crate Generation]
G --> H{Execution Target}
H -->|VM Target| I[Bytecode Compiler]
H -->|Native Target| J[LLVM Backend Crate]
I --> K[Bytecode Format .txc]
K --> L[Stack VM & Tracing GC]
J --> M[Standalone Native Executable]The tsc driver tokenizes the program, builds an AST, checks lexical scopes and types, runs constant folding, and compiles the result into bytecode for the VM or leverages LLVM to emit native machine code.
📦 Installation
1. 🪟 Windows Setup
- Go to the Releases page on GitHub.
- Download
TechScript_Setup.exe(orTechScript_Portable.zipfor a zero-install portable version). - Run the installer to configure your environment:
- Installs the native compiler (
tsc) and VM. - Automatically adds
tscto your system environmentPATH. - Configures file associations for
.txsscripts.
- Installs the native compiler (
2. 🐧 Linux / 🍎 macOS Setup (Shell Script)
curl -fsSL https://raw.githubusercontent.com/Tcode-Motion/techscript/main/scripts/install.sh | bash3. 🤖 Android (Termux) Setup
Recommended Method (Shell script):
pkg update
pkg install curl
curl -fsSL https://raw.githubusercontent.com/Tcode-Motion/techscript/main/scripts/install.sh | bashAlternative Method (pip — Not Recommended):
pkg update
pkg install python
pip install techscript
techscript install(Note: Python installations in Termux may require the --break-system-packages flag under PEP 668).
4. 🐍 Via pip (All Platforms - Not Recommended)
pip install techscript # or: pip install techscript-lang
techscript installThe PyPI package auto-detects your OS/architecture and downloads the correct native binary from GitHub Releases.
Homebrew (
brew install techscript), Winget, and Scoop support coming soon!
🚀 Quick Start
Once TechScript is installed, you can write and execute your first script in under 10 seconds:
- Create and Enter a Project Directory:
mkdir hello_world cd hello_world - Create a Script File:
Create a new file namedhello.txsand add:say "Hello, World! 🌍" - Compile and Run:
Run the file using thetsccompiler driver:tsc run hello.txs
📘 Language Guide
TechScript's syntax builds from simple assignments to full structured programs:
- Variables: Assigned dynamically. No variable keywords required.
message = "Hello TechScript" - Conditionals: Expressed via
when/elseblocks.when status == "active" say "Running" end - Loops: Multi-form
forranges or collection iterators.for i in 0..5 say i end - Functions: Declared with
doblock and returns withsend.do square(n) send n * n end
For detailed guides, see the Language Guide and the Syntax Guide.
📚 Standard Library & Modules
TechScript features a self-contained, native standard library:
| Module | Description | Guide Link |
|---|---|---|
math |
Square root, trigonometry, and basic math operations | Stdlib Reference |
collections |
Operations for pushing to lists or reading map keys | Stdlib Reference |
file |
File writing, reading, and removal utilities | Stdlib Reference |
json |
Encoding maps/lists to JSON strings and decoding th... |
TechScript v1.0.8 Official Release
TechScript v1.0.8 Official Public Release
A friendly, plain-English programming language and high-performance developer workspace built entirely in Rust.
🌟 Welcome to TechScript
TechScript is an elegant, human-centric, high-performance programming language designed to replace confusing syntaxes with friendly, expressive plain-English instructions. Underneath its natural language surface lies a lightning-fast native compiler and Virtual Machine written entirely in pure Rust, delivering high stability, robust error handling, and memory efficiency with zero runtime runtime bottlenecks.
This directory contains the official standalone production release (v1.0.8), which includes the full command-line compiler, native VM, and the state-of-the-art TechScript Studio IDE.
🚀 Version 1.0.8 Feature Highlights
1. The Redesigned TechScript Studio IDE
- Resizable Docking Layout (
egui_dock): A state-of-the-art, responsive multi-pane workspace layout. Drag, split, and dock layouts to match your workflow:- 📝 Editor: High-performance editor with customized line-number gutter column.
- 📂 Workspace Explorer: Browse, load, and edit
.txsscripts instantly. - 📟 Native Multi-Channel Terminal: Real-time standard output and diagnostic feedback logs.
- 🔍 AST & Bytecode Inspector: Inspect the live parsed Abstract Syntax Tree and virtual machine execution instructions side-by-side.
- Premium Cyberpunk Aesthetics: A sleek geometric dark theme tailored with vibrant HSL cyberpunk accents:
- Custom tabs for
📟 Stdout(Emerald green#0DF28B),⚙ Compiler(Electric blue#00A3FF), and🐞 VM Debugger(Lavender purple#D8B4FE). - Direct inline controls including
🧹 Clear Logs,📋 Copy Output, and a glowing▶ Re-run Scriptaction button.
- Custom tabs for
- High-Fidelity Official Branding: Features the official high-resolution TechScript dragon logo embedded both in the system title bar and scaled beautifully at
22x22in the top left header menu.
2. Smart Double-Click Explorer Execution
- Full Windows Shell integration: Double-clicking any
.txsscript inside Windows Explorer launches a native command-line host that executes the code and stays open, printing:This ensures your output terminals do not instantly disappear, allowing you to review logs, compile states, or runtime outputs at your own pace![Process completed. Press Enter to exit...]
3. Professional Setup Maintenance Manager
- Features a single, unified installer
TechScript_v1.0.8_x64.exethat supports advanced maintenance configurations:- ⚙ Modify: Customise path environment variables, shortcut folders, and script association options.
- 🔧 Repair: Safely checks for missing components, restores broken registry keys, and reinstalls release binaries.
- 🗑 Uninstall: Cleanly purges path settings, file configurations, and folders in a single click.
📦 What's Inside This Release Folder?
| Asset | Description |
|---|---|
TechScript_v1.0.8_x64.exe |
The complete graphical installer containing the compiler, virtual machine, and IDE workspace. |
techscript-logo.png |
High-resolution branding logo for visual integration. |
README.md |
This setup manual. |
🛠️ Step-by-Step Installation Guide
- Launch Setup: Double-click the
TechScript_v1.0.8_x64.exeinstaller executable in this folder. - Configure Options:
- Tick Add TechScript to PATH to run
techCLI commands from standard command prompts. - Tick Associate .txs Files to enable explorer double-click execution.
- Tick Add TechScript to PATH to run
- Complete Installation: Click Install to deploy the binaries.
- Run a Test: Double-click any of the example scripts inside the
examples/directory of the repository to confirm successful installation!
💻 Writing Your First Script
Create a file named hello.txs and write the following plain-English code:
// Say hello to the world!
say "Hello World!"
// Perform calculations naturally
make x be 10
make y be 20
make sum be x + y
say "The sum is:"
say sum
Run it instantly inside the Studio IDE or via command-line:
tech run hello.txs🧑💻 Creator & Author
Developed and maintained with passion by Tanmoy Majumder.
- GitHub Profile: @Tcode-Motion
- Official Repository: Tcode-Motion/techscript
For bug reports, feature requests, or contributions, please open an issue on the official GitHub repository!
v1.0.7: Standalone Production Release & IDE Ecosystem
TechScript v1.0.7 Official Public Release
A friendly, plain-English programming language and high-performance developer workspace built entirely in Rust.
🌟 Welcome to TechScript
TechScript is an elegant, human-centric, high-performance programming language designed to replace confusing syntaxes with friendly, expressive plain-English instructions. Underneath its natural language surface lies a lightning-fast native compiler and Virtual Machine written entirely in pure Rust, delivering high stability, robust error handling, and memory efficiency with zero runtime runtime bottlenecks.
This directory contains the official standalone production release (v1.0.7), which includes the full command-line compiler, native VM, and the state-of-the-art TechScript Studio IDE.
🚀 Version 1.0.7 Feature Highlights
1. The Redesigned TechScript Studio IDE
- Resizable Docking Layout (
egui_dock): A state-of-the-art, responsive multi-pane workspace layout. Drag, split, and dock layouts to match your workflow:- 📝 Editor: High-performance editor with customized line-number gutter column.
- 📂 Workspace Explorer: Browse, load, and edit
.txsscripts instantly. - 📟 Native Multi-Channel Terminal: Real-time standard output and diagnostic feedback logs.
- 🔍 AST & Bytecode Inspector: Inspect the live parsed Abstract Syntax Tree and virtual machine execution instructions side-by-side.
- Premium Cyberpunk Aesthetics: A sleek geometric dark theme tailored with vibrant HSL cyberpunk accents:
- Custom tabs for
📟 Stdout(Emerald green#0DF28B),⚙ Compiler(Electric blue#00A3FF), and🐞 VM Debugger(Lavender purple#D8B4FE). - Direct inline controls including
🧹 Clear Logs,📋 Copy Output, and a glowing▶ Re-run Scriptaction button.
- Custom tabs for
- High-Fidelity Official Branding: Features the official high-resolution TechScript dragon logo embedded both in the system title bar and scaled beautifully at
22x22in the top left header menu.
2. Smart Double-Click Explorer Execution
- Full Windows Shell integration: Double-clicking any
.txsscript inside Windows Explorer launches a native command-line host that executes the code and stays open, printing:This ensures your output terminals do not instantly disappear, allowing you to review logs, compile states, or runtime outputs at your own pace![Process completed. Press Enter to exit...]
3. Professional Setup Maintenance Manager
- Features a single, unified installer
TechScript_v1.0.7_x64.exethat supports advanced maintenance configurations:- ⚙ Modify: Customise path environment variables, shortcut folders, and script association options.
- 🔧 Repair: Safely checks for missing components, restores broken registry keys, and reinstalls release binaries.
- 🗑 Uninstall: Cleanly purges path settings, file configurations, and folders in a single click.
📦 What's Inside This Release Folder?
| Asset | Description |
|---|---|
TechScript_v1.0.7_x64.exe |
The complete graphical installer containing the compiler, virtual machine, and IDE workspace. |
techscript-logo.png |
High-resolution branding logo for visual integration. |
README.md |
This setup manual. |
🛠️ Step-by-Step Installation Guide
- Launch Setup: Double-click the
TechScript_v1.0.7_x64.exeinstaller executable in this folder. - Configure Options:
- Tick Add TechScript to PATH to run
techCLI commands from standard command prompts. - Tick Associate .txs Files to enable explorer double-click execution.
- Tick Add TechScript to PATH to run
- Complete Installation: Click Install to deploy the binaries.
- Run a Test: Double-click any of the example scripts inside the
examples/directory of the repository to confirm successful installation!
💻 Writing Your First Script
Create a file named hello.txs and write the following plain-English code:
// Say hello to the world!
say "Hello World!"
// Perform calculations naturally
make x be 10
make y be 20
make sum be x + y
say "The sum is:"
say sum
Run it instantly inside the Studio IDE or via command-line:
tech run hello.txs🧑💻 Creator & Author
Developed and maintained with passion by Tanmoy Majumder.
- GitHub Profile: @Tcode-Motion
- Official Repository: Tcode-Motion/techscript
For bug reports, feature requests, or contributions, please open an issue on the official GitHub repository!
TechScript v1.0.6 Final Production Release
TechScript v1.0.6 Official Public Release
A friendly, plain-English programming language and high-performance developer workspace built entirely in Rust.
🌟 Welcome to TechScript
TechScript is an elegant, human-centric, high-performance programming language designed to replace confusing syntaxes with friendly, expressive plain-English instructions. Underneath its natural language surface lies a lightning-fast native compiler and Virtual Machine written entirely in pure Rust, delivering high stability, robust error handling, and memory efficiency with zero runtime runtime bottlenecks.
This directory contains the official standalone production release (v1.0.6), which includes the full command-line compiler, native VM, and the state-of-the-art TechScript Studio IDE.
🚀 Version 1.0.6 Feature Highlights
1. The Redesigned TechScript Studio IDE
- Resizable Docking Layout (
egui_dock): A state-of-the-art, responsive multi-pane workspace layout. Drag, split, and dock layouts to match your workflow:- 📝 Editor: High-performance editor with customized line-number gutter column.
- 📂 Workspace Explorer: Browse, load, and edit
.txsscripts instantly. - 📟 Native Multi-Channel Terminal: Real-time standard output and diagnostic feedback logs.
- 🔍 AST & Bytecode Inspector: Inspect the live parsed Abstract Syntax Tree and virtual machine execution instructions side-by-side.
- Premium Cyberpunk Aesthetics: A sleek geometric dark theme tailored with vibrant HSL cyberpunk accents:
- Custom tabs for
📟 Stdout(Emerald green#0DF28B),⚙ Compiler(Electric blue#00A3FF), and🐞 VM Debugger(Lavender purple#D8B4FE). - Direct inline controls including
🧹 Clear Logs,📋 Copy Output, and a glowing▶ Re-run Scriptaction button.
- Custom tabs for
- High-Fidelity Official Branding: Features the official high-resolution TechScript dragon logo embedded both in the system title bar and scaled beautifully at
22x22in the top left header menu.
2. Smart Double-Click Explorer Execution
- Full Windows Shell integration: Double-clicking any
.txsscript inside Windows Explorer launches a native command-line host that executes the code and stays open, printing:This ensures your output terminals do not instantly disappear, allowing you to review logs, compile states, or runtime outputs at your own pace![Process completed. Press Enter to exit...]
3. Professional Setup Maintenance Manager
- Features a single, unified installer
TechScript_v1.0.6_x64.exethat supports advanced maintenance configurations:- ⚙ Modify: Customise path environment variables, shortcut folders, and script association options.
- 🔧 Repair: Safely checks for missing components, restores broken registry keys, and reinstalls release binaries.
- 🗑 Uninstall: Cleanly purges path settings, file configurations, and folders in a single click.
📦 What's Inside This Release Folder?
| Asset | Description |
|---|---|
TechScript_v1.0.6_x64.exe |
The complete graphical installer containing the compiler, virtual machine, and IDE workspace. |
techscript-logo.png |
High-resolution branding logo for visual integration. |
README.md |
This setup manual. |
🛠️ Step-by-Step Installation Guide
- Launch Setup: Double-click the
TechScript_v1.0.6_x64.exeinstaller executable in this folder. - Configure Options:
- Tick Add TechScript to PATH to run
techCLI commands from standard command prompts. - Tick Associate .txs Files to enable explorer double-click execution.
- Tick Add TechScript to PATH to run
- Complete Installation: Click Install to deploy the binaries.
- Run a Test: Double-click any of the example scripts inside the
examples/directory of the repository to confirm successful installation!
💻 Writing Your First Script
Create a file named hello.txs and write the following plain-English code:
// Say hello to the world!
say "Hello World!"
// Perform calculations naturally
make x be 10
make y be 20
make sum be x + y
say "The sum is:"
say sum
Run it instantly inside the Studio IDE or via command-line:
tech run hello.txs🧑💻 Creator & Author
Developed and maintained with passion by Tanmoy Majumder.
- GitHub Profile: @Tcode-Motion
- Official Repository: Tcode-Motion/techscript
For bug reports, feature requests, or contributions, please open an issue on the official GitHub repository!
TechScript v1.0.6 — High Performance (7th Milestone)
Official v1.0.6 high-performance release. Transitioned to Native Rust with a premium VS Code extension and synced Pip package (techscript-lang).
TechScript v1.0.5 — High Performance
Official v1.0.5 high-performance release.
TechScript v1.0.4.7 - Official Universal Edition
Official Universal Support Edition. This release fixes Linux/Kali/Termux import issues and introduces a Python fallback engine for non-Windows platforms. This version is sanitized and contains only public-release files. GitHub Actions will automatically build native engines for Linux/Mac.
TechScript v1.0.4.4 - Universal Edition
This version introduces Universal Platform Support! v1.0.4.4 now works natively on Windows (Rust VM) and automatically falls back to a built-in Python engine on Android (Termux), Linux, and macOS. This ensures TechScript is available everywhere with zero friction.
TechScript v1.0.4.3 - Cinema Edition
Official launch of TechScript v1.0.4.3 'Cinema Edition'. Features high-end 3D motion design, advanced anime module, and professional Animation Studio v7.0 Cinema Edition.
TechScript v1.0.3
TechScript v1.0.3 — Comprehensive Standard Library & VM Optimization
This massive update transforms TechScript from a basic scripting language into a professional-grade tool with over 150+ native functions and 100% type-safe execution.
🚀 Key Features
- 150+ Built-in Functions: New math., crypto., json., s., os.,
andom., and date.* modules. - Inline Execution: Run code instantly with ech eval "...".
- Cryptography: Native SHA-256 (FIPS 180-4), MD5, and Base64 support.
- Improved Performance: Optimized loop processing (+20% faster execution).
- Bug Fixes: Corrected stop (break) / skip (continue) behavior and in/ ypeof operators.
📦 Installation
Download echscriptv1.0.3.exe below and run setup.bat from the release folder!



