Skip to content

Instantly share code, notes, and snippets.

@xolve
Created January 26, 2020 07:10
Show Gist options
  • Save xolve/3597e47347d90c5d8d163045e8a5b8f3 to your computer and use it in GitHub Desktop.
Save xolve/3597e47347d90c5d8d163045e8a5b8f3 to your computer and use it in GitHub Desktop.
fn main() {
for i := 0; i < 100; i++ {
if i % 15 == 0 {
println("FizzBuzz")
} else if i % 5 == 0 {
println("Buzz")
} else if i % 3 == 0 {
println("Fizz")
} else {
println(i)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment