Skip to content

Instantly share code, notes, and snippets.

@konoha81
Created April 8, 2013 02:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save konoha81/5333839 to your computer and use it in GitHub Desktop.
Save konoha81/5333839 to your computer and use it in GitHub Desktop.
FizzBuzz@perl
#!/usr/local/bin/perl
use strict;
my $i = 1;
while($i <= 100){
if($i % 3 == 0 && $i % 5 == 0){
print "FizzBuzz";
}
elsif($i % 3 == 0){
print "Fizz";
}
elsif($i % 5 == 0){
print "Buzz";
}
else{
print "$i";
}
$i++;
print "\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment