7 lines
91 B
Rust
7 lines
91 B
Rust
fn main() {
|
|
let x = dvec::DVec();
|
|
x.push(1);
|
|
io::println(fmt!("%d", x[0]));
|
|
}
|
|
|