VDX

A fast, safe programming language built for AI and games.

hello.vdx
class Hello {
    let name = "VDX";
    print("Welcome to", this.name);

    fn max(a, b) {
        if (a > b) { return a; }
        else { return b; }
    }

    print("max(3, 7) =", max(3, 7));
}

Why VDX?

🛡️

Safe by Default

Built-in loop protection prevents infinite loops. Use @unsafe when you need full control.

Fast

Compiled with C++17. Designed for performance-critical applications like games and AI.

🎮

Built for Games & AI

From the ground up, VDX is designed with game development and artificial intelligence in mind.