5 lines
89 B
Rust
5 lines
89 B
Rust
|
fn main() {
|
||
|
let rec = @{mut f: @{g: ~[1, 2, 3]}};
|
||
|
while rec.f.g.len() == 23 {}
|
||
|
}
|