SimpleScript is an experimental, high-performance compiled programming language designed as a fast alternative to JavaScript. Built with Zig and powered by LLVM, SimpleScript compiles directly to native machine code with aggressive optimizations.
- 🚀 Ultra-Fast - 5x faster than Python, competes with C/Rust
- 🔧 Native Compilation - Direct to machine code via LLVM
- ⚙️ Zero Runtime - No interpreter, no VM, just native code
- 🎨 Modern Design - Built from scratch with performance in mind
var x = 10 // Mutable variable
const PI = 3 // Immutable constant
var result = 10 + 20 * 3 // 70
var value = (10 + 20) / 2 // 15
Operators: +, -, *, /
for i in 0..10 {
say(i)
}
We welcome contributions!
Ways to contribute:
- 🐛 Report bugs
- 💡 Suggest features
- 📝 Improve documentation
- 🧪 Write tests
- ✨ Implement features
SimpleScript is open source software licensed under the MIT license.
- LLVM Project - Compiler infrastructure
- Zig Language - Systems programming language
Built with ❤️ for performance SimpleScript - The Simple Way To Write Fast Code