3864d6d845
Instead of using the new_ prefix just name them after their type
10 lines
169 B
Rust
10 lines
169 B
Rust
use std;
|
|
import std::map;
|
|
import std::map::hashmap;
|
|
|
|
fn main() {
|
|
let m = map::bytes_hash();
|
|
m.insert(str::bytes("foo"), str::bytes("bar"));
|
|
log(error, m);
|
|
}
|