Skip to content

Instantly share code, notes, and snippets.

@steveklabnik
Created July 14, 2014 13:17
Show Gist options
  • Save steveklabnik/8de9b9b0ae2e45383d85 to your computer and use it in GitHub Desktop.
Save steveklabnik/8de9b9b0ae2e45383d85 to your computer and use it in GitHub Desktop.
use std::rc::Rc;
fn main() {
let x = Rc::new(5i);
for _ in range(0, 10u) {
println!("{}", x)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment