Skip to content

Instantly share code, notes, and snippets.

@bhavya411
Created August 3, 2018 13:21
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/274981a7b3a7b19a6b94f6bccb78a99f to your computer and use it in GitHub Desktop.
Save bhavya411/274981a7b3a7b19a6b94f6bccb78a99f to your computer and use it in GitHub Desktop.
fn main() {
let a = [10, 20, 30, 40, 50];
for element in a.iter() {
println!("the value is: {}", element);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment