Skip to content

Instantly share code, notes, and snippets.

@jcar787
Created April 8, 2022 18:59
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 jcar787/b54a06a6359832dfbee792ad1d272dc7 to your computer and use it in GitHub Desktop.
Save jcar787/b54a06a6359832dfbee792ad1d272dc7 to your computer and use it in GitHub Desktop.
Using for with vectors in rust
fn main() {
let bands = vec!["Rush", "Black Sabbath", "Pink Floyd"];
for band in bands.iter() {
println!("{} is one of my favorite bands", band);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment