Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,12 @@ releases/
graphify-out/



# Executables & Binaries
*.exe
*.bin
*.out
*.app
bin/
build/
dist/
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2026 TechScript 2.0 Contributors
Copyright (c) 2026 Tcode-Motion

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@

**The plain-English programming language. Zero symbols. Zero overhead.**

**Author:** Tcode-Motion

> **Status:** Pre-release / Under Development. Architecture modules are currently being built and tested.

[![Build Status](https://img.shields.io/github/actions/workflow/status/Tcode-Motion/techscript/build.yml?branch=main&style=for-the-badge&logo=github&label=Build)](https://github.com/Tcode-Motion/techscript/actions)
[![License: MIT](https://img.shields.io/badge/License-MIT-059669?style=for-the-badge&logo=license)](LICENSE)
[![Latest Release](https://img.shields.io/github/v/release/Tcode-Motion/techscript?style=for-the-badge&color=0DF28B&label=Release)](https://github.com/Tcode-Motion/techscript/releases)
Expand Down Expand Up @@ -348,7 +352,6 @@ techscript/
├── .github/ # GitHub templates and workflows
├── .vscode/ # Editor settings
├── assets/ # Logos and graphics
├── benchmarks/ # Performance benchmarks
├── cli/ # Crate for the `tsc` compiler driver CLI
├── compiler/ # Crate subfolders for language compiler phases
│ ├── ast/ # Abstract Syntax Tree representation
Expand All @@ -367,7 +370,6 @@ techscript/
├── editors/ # VS Code extension source and VSIX packages
├── examples/ # Sample projects and code snippets
├── installer/ # Script files for compiling installer executables
├── licenses/ # Licenses of standard library dependencies
├── runtime/ # Crate subfolders for program execution
│ ├── builtins/ # Standard library module implementations
│ ├── gc/ # NaN-boxed VM Garbage Collector
Expand All @@ -378,7 +380,6 @@ techscript/
├── scripts/ # Utility and platform installation scripts
├── stdlib/ # Standard library header definitions
├── templates/ # New project templates
├── third_party/ # Extracted third-party sources
└── tools/ # Ecosystem tools
├── formatter/ # Formatter engine (`tsfmt`)
├── linter/ # Linter analyzer (`tslint`)
Expand Down
Loading