Created
April 8, 2022 18:55
-
-
Save jcar787/7ca7ed5f99276752d55dc552b3db253c to your computer and use it in GitHub Desktop.
While loop example in rust
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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