Skip to content

Instantly share code, notes, and snippets.

@Shadey
Last active August 29, 2015 14:19
Show Gist options
  • Save Shadey/5fe7aea37881a0f57e03 to your computer and use it in GitHub Desktop.
Save Shadey/5fe7aea37881a0f57e03 to your computer and use it in GitHub Desktop.
fn main(){
for x in 1..101{
match(x % 3, x % 5){
(0,0) => println!("FizzBuzz");
(0,_) => println!("Fizz");
(_,0) => println!("Buzz");
(_,_) => println!("{}",x);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment