8 lines
79 B
Rust
8 lines
79 B
Rust
// -*- rust -*-
|
|
|
|
fn grow(mutable &vec[int] v) {
|
|
v += vec(1);
|
|
}
|
|
|
|
fn main() {}
|