afterburner 0.1.1

Afterburner - JS ~> WASM Sandboxed Execution VM
Documentation
1
2
3
4
5
6
7
8
9
10
//! `burn` — the Afterburner command-line runtime.
//!
//! Thin entrypoint. All subcommand logic lives in [`afterburner::cli`].

fn main() {
    if let Err(e) = afterburner::cli::run() {
        eprintln!("burn: {e:#}");
        std::process::exit(1);
    }
}