# fizzbuzz in several different languages and styles. # Jim Mahoney | cs.marlboro.college | MIT License gcc fizzbuzz.c -o fizzbuzz_c; ./fizzbuzz_c # generic C php fizzbuzz.php # generic php python fizzbuzz.py # doctests , accumulator pattern python fizzbuzz_bad.py # ummm ... ruby fizzbuzz.rb # functional programming in ruby