Skip to content

Instantly share code, notes, and snippets.

@carlogilmar
Created October 16, 2017 04:10
Show Gist options
  • Save carlogilmar/f27e90a89d588dad9e9f800cdfd1c1e0 to your computer and use it in GitHub Desktop.
Save carlogilmar/f27e90a89d588dad9e9f800cdfd1c1e0 to your computer and use it in GitHub Desktop.
for i in 1...50 {
if i%5==0 && i%3==0 {
print("Fizzbuzz 🍻 ")
}
else if i%5 == 0{
print("Buzz")
}
else if i%3==0{
print("Fizz")
}
else{
print("\(i)")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment