Skip to content

Instantly share code, notes, and snippets.

@nectariner
Created February 20, 2022 18:55
Show Gist options
  • Save nectariner/cca1c49cf95a0de920aed29475ca2ecd to your computer and use it in GitHub Desktop.
Save nectariner/cca1c49cf95a0de920aed29475ca2ecd to your computer and use it in GitHub Desktop.
rust_user_input
let mut number = String::new();
io::stdin()
.read_line(&mut number)
.expect("Failed to read input");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment