/FizzBuzz

Various implementations of the FizzBuzz Challenge in different languages.

Primary LanguageAssembly

FizzBuzz

This repository contains implementations of the FizzBuzz challenge in various languages.

__

The purpose of this challenge is to iterate through a range of numbers, and print "fizz" to the console when a number that is a multiple of 3 is evaluated, "buzz" when a multiple of 5 is evalulated, and "fizzbuzz" when the number of a multiple of both 3 and 5.