Skip to content

Instantly share code, notes, and snippets.

@bhavya411
Created August 3, 2018 13:08
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/6a48407ac8ebfeb7bce9dea29827e7c8 to your computer and use it in GitHub Desktop.
Save bhavya411/6a48407ac8ebfeb7bce9dea29827e7c8 to your computer and use it in GitHub Desktop.
fn main() {
let mut count = 0;
while count < 5 {
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