wasibox-core 1.0.17

A collection of core utilities optimized for WASI
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::env;
use std::process;

fn main() {
    let args = env::args_os();

    if let Err(e) = wasibox_core::execute(args) {
        eprintln!("{}", e);
        process::exit(1);
    }
}