VORTEX

The Future of CPU + GPU-Aware Programming

Revolutionary programming language that bridges the gap between CPU and GPU computing with intelligent workload distribution and parallel-first syntax.

Built for the Future

VORTEX combines the best of both worlds with cutting-edge features designed for modern computing.

CPU/GPU Hybrid

Seamlessly execute code across CPU and GPU architectures with intelligent workload distribution.

Parallel-First Syntax

Built from the ground up with parallelism in mind. Write concurrent code that feels natural.

High-Performance Systems

Optimized for modern hardware with zero-cost abstractions and compile-time optimizations.

See VORTEX in Action

Experience the power of CPU + GPU-aware programming

// Test file to verify range parsing fix
let x = 0

// Test range function syntax
for i in range(0, 3):
    print("range function:")
    print(i)

// Test range operator syntax  
parallel j in 0..3:
    print("range operator:")
    print(j)

// Test with variables
let start = 1
let end = 4
for k in start..end:
    print("variable range:")
    print(k)

print("Range parsing test complete")