FizzBuzz

About

A quick implementation of the classic FizzBuzz challenge, written in Rust.

Given the bound 15, the program should print:

1
2
Bob
4
Cat
Bob
7
8
Bob
Cat
11
Bob
13
14
BobCat

To Run

$ ./run.sh 15

This will start a local server at 127.0.0.1/8080

Once running locally, you can vist the endpoint at `http://localhost:8080/?bound=15`.

Be aware that you will need cargo installed to compile the executable. Refer to the Rust documentation for installation instructions.