Getting Started with VORTEX
Installation
$
git clone https://github.com/GTgyani206/VORTEX-lang.git
$
cd vortex-lang
$
cargo build --release
Compiling vortex-lang v0.1.0
Finished release [optimized] target(s)
$
cargo run
Welcome to VORTEX v0.1.0
Type :help for available commands
Your First VORTEX Program
let name = "World"
let count = 42
print("Hello")
Hello
print(name)
World
print("Count:")
Count:
print(count)
42
Key Features
- • Dual-Mode Execution: Traditional CPU and GPU-accelerated parallel processing
- • Interactive REPL: Full-featured Read-Eval-Print Loop with command history
- • Smart Syntax: Clean, Python-inspired syntax with GPU-specific constructs
- • Memory Safe: Built with Rust for memory safety and performance