Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/EinBaum/FizzBuzz
The FizzBuzz Programming Language interpreter
https://github.com/EinBaum/FizzBuzz
fizzbuzz linux
Last synced: 2 months ago
JSON representation
The FizzBuzz Programming Language interpreter
- Host: GitHub
- URL: https://github.com/EinBaum/FizzBuzz
- Owner: EinBaum
- License: wtfpl
- Created: 2015-05-12T18:29:04.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-28T09:13:56.000Z (over 7 years ago)
- Last Synced: 2024-04-24T16:14:42.423Z (9 months ago)
- Topics: fizzbuzz, linux
- Language: C
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- AwesomeInterpreter - FizzBuzz
README
# FizzBuzz Programming Language
The FizzBuzz Programming Language interpreter.If an interviewer ever asks you about writing a FizzBuzz program in a
language of your choice, give him this piece of code:```
100
```## Installation
Requirements: Any C compiler, make
Enter the project directory and type `make` to create the executable `fpl`.
Running the program without arguments will read from the standard input.
Alternatively you can specify filenames as arguments (each will be interpreted).## Syntax
```
```
Example program:
```
15
3
```
will produce the following output:
```
1 2 Fizz 4 Buzz Fizz 7 8 Fizz Buzz 11 Fizz 13 14 FizzBuzz
1 2 Fizz
```Each number is separated with a space. A newline is written after the last number.