Skip to content

Instantly share code, notes, and snippets.

@bhavya411
Created August 3, 2018 13:20
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 bhavya411/2cb3a13671af7e6f01dcb6c6f00332cd to your computer and use it in GitHub Desktop.
Save bhavya411/2cb3a13671af7e6f01dcb6c6f00332cd to your computer and use it in GitHub Desktop.
fn main() {
let mut count = 0;
loop {
if count == 5 {
break;
}
println!("Printing 5 times!");
count = count + 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment