VortLang is a minimal compiled programming language written in Rust. Designed with simplicity and learning in mind, it offers clean syntax and fast execution. Its syntax is similar to Python's and Rust's.
- Ensure Rust and Cargo are installed.
- Clone the repository:
git clone https://github.com/VortTeam/VortLang.git
- Build the project:
cd VortLang/lang cargo build --release
Run a VortLang script:
cargo run --release <path/to/filename.vl>
or
path/to/vortlang.exe <filename.vl>
let name = "World"
num x = 10 plus 5 times 2
print(o"Hello {name}! Result: {x}")
Output:
Hello World! Result: 20
Licensed under Apache 2.0 License.
Contributions are welcome! If you are interested in contributing please check CONTRIBUTING.md