From c341ae6721597d41892b6568251cf4b62969f62c Mon Sep 17 00:00:00 2001 From: javalavaohno <89600192+javalavaohno@users.noreply.github.com> Date: Fri, 14 Jan 2022 07:09:49 -0600 Subject: [PATCH] Create README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..5aa977a --- /dev/null +++ b/README.md @@ -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" +