10 lines
118 B
Rust
10 lines
118 B
Rust
|
// -*- rust -*-
|
||
|
|
||
|
// Issue #50.
|
||
|
|
||
|
fn main() {
|
||
|
auto x = rec(foo = "hello", bar = "world");
|
||
|
log x.foo;
|
||
|
log x.bar;
|
||
|
}
|