Skip to content

Instantly share code, notes, and snippets.

@sashaphanes
Created September 26, 2012 16:32
Show Gist options
  • Save sashaphanes/3789039 to your computer and use it in GitHub Desktop.
Save sashaphanes/3789039 to your computer and use it in GitHub Desktop.
Perl FizzBuzz
#~/usr/bin/perl -w
use strict;
use warnings;
my $count;
for ($count = 1; $count <= 100; $count++) {
if ($count % 15 == 0) {
print "FizzBuzz\n";}
elsif ($count % 3 == 0) {
print "Fizz\n";}
elsif ($count % 5 == 0) {
print "Buzz\n";}
else {print "$count\n";}
}
exit;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment