Skip to content

Instantly share code, notes, and snippets.

@rust-play
Created July 22, 2019 06:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rust-play/08cc2cd56fa497192fccbca11e126749 to your computer and use it in GitHub Desktop.
Save rust-play/08cc2cd56fa497192fccbca11e126749 to your computer and use it in GitHub Desktop.
Code shared from the Rust Playground
fn main() {
let mut x = 5;
println!("The value of x is: {}", x);
x = 909089uio;
println!("The value of x is: {}", x);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment