.hx files and compiles only the modules you need.
Quick Start
Run your first Helix script in seconds.
Core Philosophy
- The core language is tiny. Only basic constructs: variables, functions, if/else, for/while loops, return, wait, spawn.
- Everything else is a module. Discord, HTTP, databases — all handled by self-contained modules.
- Compile only what you need. Each module is behind a feature flag. Need only math and JSON? Your binary is ~900KB instead of ~5MB.
- Auto async/multithreading. The runtime handles concurrency automatically via Tokio.
Quick Start
hello.hx):