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