Skip to content

Instantly share code, notes, and snippets.

@djanatyn
Created August 30, 2011 00:41
Show Gist options
  • Save djanatyn/1179807 to your computer and use it in GitHub Desktop.
Save djanatyn/1179807 to your computer and use it in GitHub Desktop.
fizzbuzz in perl 6
use v6;
my $say;
for 1..100 {
if $_ %% 3 {
if $_ %% 5 { $say = "FizzBuzz!"; }
else { $say = "Fizz!"; }
}
elsif $_ %% 5 { $say = "Buzz!"; }
else { $say = $_; }
say $say;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment