1 2 3 4 5 6 7 8 9 10 11
// -*- rust -*- // Issue #50. fn main() { let x = {foo: "hello", bar: "world"}; log(debug, x.foo); log(debug, x.bar); }