simple/
simple.rs

1fn main() {
2    web_local_storage_api::set_item("foo", "bar").unwrap();
3    let s = web_local_storage_api::get_item("foo");
4    println!("hey {:?} {:?}", &s, web_local_storage_api::location());
5}