Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 558 Bytes

README.md

File metadata and controls

30 lines (25 loc) · 558 Bytes

Node-CLI-Programs

Node.js Command Line Interface Programs

FizzBuzz

Taught myself some Node.js by implementing common FizzBuzz game in a Node.js command line interface clone the repo, npm install async, and play!

Input should be formatted like this: 3 Fizz, 5 Buzz, 10 OR 3 Fizz, 5 Buzz, 7 Sivv, 100 Generally it can take any number of comma separated "Flag Callout" arguments, followed by the maximum number you want to program to print.

The first example would print: 1: 2: 3: Fizz 4: 5: Buzz 6: Fizz 7: 8: 9: Fizz 10: Buzz