Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sigmavirus24/333767d04fc2ab362406 to your computer and use it in GitHub Desktop.
Save sigmavirus24/333767d04fc2ab362406 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