[ PLAYGROUND ]
Run DEXA in the browser
Interactive editor and live execution — coming soon. Until then, use the compiler locally.
[ PREVIEW ]
main.dexa
fn main() -> int {
let x: int = 1 + 2;
return x;
} ● Run
Editor + output panel will run the reference compiler (or a WASM build) in the browser. Planned for a future release.
[ RUN LOCALLY ]
Use the CLI today:
git clone https://github.com/dxiv/dxa-dev
cd compiler
cargo run -- ../examples/hello.dexa