A FizzBuzz implementation in Golang
The FizzBuzz program takes a list of numbers and returns output based on the following rules:
- Return
Fizz
if the number is divisible by three - Return
Buzz
if the number is divisible by five - Return
FizzBuzz
if the number is divisible by three and five
go test -bench=Respond -v ../...
go test --fuzz=FuzzRespondSlowly -v