7 lines
107 B
Rust
7 lines
107 B
Rust
|
|
|
|
|
|
// -*- rust -*-
|
|
|
|
// Issue #50.
|
|
fn main() { let x = {foo: "hello", bar: "world"}; log x.foo; log x.bar; } |