emlite 0.1.54

A Rust wrapper around emlite
Documentation
1
2
3
4
5
6
7
use emlite::{Console, argv};

fn main() {
    emlite::init();
    let con = Console::get();
    con.log(&argv!["Hello from Emlite!"]);
}