pub fn out<T>(string: T)where T: AsRef<str>,
Prints the given string using the emscripten-defined out() JS function.
out()
string
out("Hello, world!"); out(format!("0.1 + 0.2 = {}", 0.1 + 0.2));