Skip to content

Instantly share code, notes, and snippets.

@jcar787
Created April 8, 2022 18:55
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 jcar787/7ca7ed5f99276752d55dc552b3db253c to your computer and use it in GitHub Desktop.
Save jcar787/7ca7ed5f99276752d55dc552b3db253c to your computer and use it in GitHub Desktop.
While loop example in rust
fn main() {
let mut i = 1_u8;
while i < 8 {
println!("Your number is: {}", i + 5);
i += 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment