Skip to content

Instantly share code, notes, and snippets.

@djanatyn
Created August 29, 2011 21:02
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 djanatyn/1179403 to your computer and use it in GitHub Desktop.
Save djanatyn/1179403 to your computer and use it in GitHub Desktop.
perl 6 fizzbuzz
use v6;
for 1..100 {
if $_ %% 3 {
if $_ %% 5 { say "FizzBuzz!"; }
else { say "Fizz!"; }
}
elsif $_ %% 5 { say "Buzz!"; }
else { .say; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment