mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-17 02:54:26 +00:00
9 lines
92 B
Rust
9 lines
92 B
Rust
fn f(x: &int) {
|
|
println(x.to_str());
|
|
}
|
|
|
|
pub fn main() {
|
|
let x = @mut 3;
|
|
f(x);
|
|
}
|