Quickstart Guide
Get up and running with your first Zyra program in 2 minutes!
1. Create a Zyra Project
Initialize a new project or scaffold from a template:
2. Compile & Run Natively
Run src/main.zy in a single step:
Or start the hot-reloading dev server:
3. Compile to WebAssembly or JavaScript
Target WebAssembly or browser environments:
# Compile to WebAssembly (.wasm)
zyra build src/main.zy --target=wasm32
# Compile to JavaScript ESM (.mjs)
zyra build src/main.zy --target js