// file copyright release to public domain #[macro_use] extern crate wap; wap_begin!(|window| { let document = wap::get(&window, "document").unwrap(); let body = wap::get(&document, "body").unwrap(); wap::set( &body, "innerHTML", "

Hello World

".to_string().into(), ); }); fn main() {}