Skip to content

Instantly share code, notes, and snippets.

@edwardloveall
Created June 8, 2014 17:20
Show Gist options
  • Save edwardloveall/9a0a57c2f0987b890d6f to your computer and use it in GitHub Desktop.
Save edwardloveall/9a0a57c2f0987b890d6f to your computer and use it in GitHub Desktop.
for i in (1...100) {
if (i % 3 == 0 && i % 5 == 0) {
println("fizzbuzz")
} else if i % 3 == 0 {
println("fizz")
} else if i % 5 == 0 {
println("buzz")
} else {
println(i)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment