Skip to content

VictorFrancelino/simplescript

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SimpleScript

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.

⚡ Why SimpleScript?

  • 🚀 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

📖 Language Syntax

Variables

var x = 10 // Mutable variable
const PI = 3 // Immutable constant

Expressions

var result = 10 + 20 * 3 // 70
var value = (10 + 20) / 2 // 15

Operators: +, -, *, /

Loops

for i in 0..10 {
  say(i)
}

🤝 Contributing

We welcome contributions!

Ways to contribute:

  • 🐛 Report bugs
  • 💡 Suggest features
  • 📝 Improve documentation
  • 🧪 Write tests
  • ✨ Implement features

📜 License

SimpleScript is open source software licensed under the MIT license.

🙏 Acknowledgments

  • LLVM Project - Compiler infrastructure
  • Zig Language - Systems programming language

Built with ❤️ for performance SimpleScript - The Simple Way To Write Fast Code

About

High-performance language compiler built with Zig and LLVM.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages