package
0.0.0-20241223090118-035fcd7fed56
Repository: https://github.com/ibiscum/hands-on-software-engineering-with-golang.git
Documentation: pkg.go.dev

# Functions

Evaluate implements the fizzbuzz logic for the integer value n and returns: - "Fizz" if n is divisible by 3 - "Buzz" if n is divisible by 5 - "FizzBuzz" if n is divisible by both 3 and 5 - n otherwise.