Skip to content

Instantly share code, notes, and snippets.

@rust-play
Created June 29, 2018 11: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 rust-play/0af1c5764a2b22423f288a5f080d6c72 to your computer and use it in GitHub Desktop.
Save rust-play/0af1c5764a2b22423f288a5f080d6c72 to your computer and use it in GitHub Desktop.
Code shared from the Rust Playground
fn main()
{
for i in (4..10).rev().map(|i| i*2)
{
println!("{}",i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment