10 lines
97 B
Rust
10 lines
97 B
Rust
fn f(x: &int) {
|
|
io::println(x.to_str());
|
|
}
|
|
|
|
pub fn main() {
|
|
let x = @mut 3;
|
|
f(x);
|
|
}
|
|
|