Skip to content

Instantly share code, notes, and snippets.

@gusdelact
Created October 13, 2019 06:15
Show Gist options
  • Save gusdelact/8550c18d4f0edb592d99246e88f0756e to your computer and use it in GitHub Desktop.
Save gusdelact/8550c18d4f0edb592d99246e88f0756e to your computer and use it in GitHub Desktop.
fn main() {
let mut i=0;
loop {
i = i + 1;
if i>100 {
break;
}
}
println!("Fin");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment