4 lines
75 B
Rust
4 lines
75 B
Rust
|
fn main() {
|
||
|
let ~{a, b} = ~{a: 100, b: 200};
|
||
|
assert a + b == 300;
|
||
|
}
|