Skip to content

Instantly share code, notes, and snippets.

@durka
Created July 12, 2018 22:41
Show Gist options
  • Save durka/eda69cc3986c26edeaf9a778e301c5df to your computer and use it in GitHub Desktop.
Save durka/eda69cc3986c26edeaf9a778e301c5df to your computer and use it in GitHub Desktop.
fn main() {
let mut i = 0;
times!([4 2] {
i += 1;
});
println!("i = {}", i);
assert_eq!(i, 42);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment