A false assertion prints message to the console without interrupting execution of subsequent code.
#[wasm_bindgen(start)]
pub fn main() -> Result<(), JsValue> {
web_sys::console::assert();
Ok(())
}
pub fn assert()