mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2025-01-01 16:04:51 +03:00
Fix the console_log
example
This commit is contained in:
parent
dd3dba9285
commit
e283093997
@ -8,4 +8,3 @@ crate-type = ["cdylib"]
|
||||
|
||||
[dependencies]
|
||||
wasm-bindgen = { path = "../.." }
|
||||
web-sys = { path = "../../crates/web-sys" }
|
@ -1,11 +1,7 @@
|
||||
extern crate wasm_bindgen;
|
||||
extern crate web_sys;
|
||||
|
||||
use wasm_bindgen::prelude::*;
|
||||
|
||||
// You can use the console bindings from web-sys...
|
||||
use web_sys::console;
|
||||
|
||||
// ... or you can manually write the bindings yourself
|
||||
#[wasm_bindgen]
|
||||
extern "C" {
|
||||
@ -22,7 +18,4 @@ pub fn run() {
|
||||
log("Hello from Rust!");
|
||||
log_u32(42);
|
||||
log_many("Logging", "many values!");
|
||||
|
||||
console::log(JsValue::from("Another message from rust!"));
|
||||
console::log(JsValue::from(56u32));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user