Create README.md

This commit is contained in:
javalavaohno 2022-01-14 07:09:49 -06:00 committed by GitHub
parent 4f1475dfa8
commit c341ae6721
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

8
README.md Normal file
View file

@ -0,0 +1,8 @@
# FizzBuzz
A simple program which plays FizzBuzz up to a number of your choice.
For those who don't know how FizzBuzz works, you count up from 1, but:
- Every time a number is a multiple of 3, you say "Fizz"
- Every time a number is a multiple of 5, you say "Buzz"
- Every time the number is a multiple of both 3 and 5 you say "FizzBuzz"