Skip to content

Commit 9d9e057

Browse files
committed
Initial standalone release of TechScript
0 parents  commit 9d9e057

27 files changed

Lines changed: 6800 additions & 0 deletions

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.vscode/
2+
.DS_Store
3+
*.log

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# TechScript
2+
3+
TechScript is a simple, friendly programming language (.txs).
4+
5+
## Installation
6+
7+
### Windows
8+
Double-click `setup.bat` to install. This will:
9+
1. Copy `tech.exe` to an isolated `.techscript/bin` user directory.
10+
2. Add the command to your `PATH`.
11+
3. Install the VS Code extension for `.txs` files.
12+
13+
Alternatively, you can manually place `bin/tech.exe` anywhere in your system `PATH`.
14+
15+
## Features
16+
- Interpretable `.txs` source files
17+
- Simple syntax
18+
- Included `tech check` and interactive `tech repl`
19+
- Syntax checking and transpiling capabilities.
20+
21+
## Usage
22+
- Run a script: `tech run file.txs`
23+
- Transpile to python: `tech transpile file.txs`
24+
- Syntax check only: `tech check file.txs`
25+
- Start interactive prompt: `tech repl`
26+
27+
Check the `examples/` directory for syntax basics!

bin/tech.exe

6.95 MB
Binary file not shown.

0 commit comments

Comments
 (0)