Skip to content

Instantly share code, notes, and snippets.

@ericdorsey
Last active August 29, 2015 14:04
Show Gist options
  • Save ericdorsey/8ff9f098fbd8174e9723 to your computer and use it in GitHub Desktop.
Save ericdorsey/8ff9f098fbd8174e9723 to your computer and use it in GitHub Desktop.
FizzBuzz in Go
package main
import "fmt"
//From http://blog.codinghorror.com/why-cant-programmers-program/
func main() {
for i := 1; i <= 100; i++ {
if (i % 3 == 0) && (i % 5 == 0) {
fmt.Println("FizzBuzz")
} else if i % 3 == 0 {
fmt.Println("Fizz")
} else if i % 5 == 0 {
fmt.Println("Buzz")
} else {
fmt.Println(i)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment