This is a C# implementation of the FizzBuzz coding puzzle using a .NET Core console application. A Unit test project is included which uses XUnit and FluentAssertions.
Write a program that,
- Prints the numbers from 1 to 100
- For multiples of 3 print "Fizz" instead of the number
- For multiples of 5 print "Buzz" instead of the number
- For multiples of 3 and 5 print "FizzBuzz" instead of the number