Skip to content

Instantly share code, notes, and snippets.

@sashaphanes
sashaphanes / fizzBuzz.pl
Created September 26, 2012 16:32
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";}