Skip to content

Instantly share code, notes, and snippets.

@chespinoza
Created November 11, 2016 13:45
Show Gist options
  • Save chespinoza/374f9fa6cef6b86931f3eb39b592dac0 to your computer and use it in GitHub Desktop.
Save chespinoza/374f9fa6cef6b86931f3eb39b592dac0 to your computer and use it in GitHub Desktop.
That's beautiful
fn main() {
for (index, value) in (5..10).enumerate() {
println!("index = {} and value = {}", index, value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment