Skip to content

Instantly share code, notes, and snippets.

@tbelaire
Created May 14, 2014 16:02
Show Gist options
  • Save tbelaire/d5d6950cb0798cf6e194 to your computer and use it in GitHub Desktop.
Save tbelaire/d5d6950cb0798cf6e194 to your computer and use it in GitHub Desktop.
fn mutter( x : ~int ) -> ~int {
let mut y = x;
*y = 24;
return y;
}
fn main() {
let y = box 42;
let x = mutter( y );
println!("x:{}", x);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment