Skip to content

Instantly share code, notes, and snippets.

@jollyjoester
Created January 21, 2016 02:42
Show Gist options
  • Save jollyjoester/6adbbf6ce1fe2b8a4abe to your computer and use it in GitHub Desktop.
Save jollyjoester/6adbbf6ce1fe2b8a4abe to your computer and use it in GitHub Desktop.
そーいえばSwiftでFizzBuzz #__swift__ #CodePiece
for i in 1...100 {
switch (i % 3, i % 5) {
case (0, 0):
print("FizzBuzz")
case (0, _):
print("Fizz")
case (_, 0):
print("Buzz")
default:
print(i)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment