Skip to content

Instantly share code, notes, and snippets.

@LunaBorowska
Created September 12, 2012 15:52
Show Gist options
  • Save LunaBorowska/3707610 to your computer and use it in GitHub Desktop.
Save LunaBorowska/3707610 to your computer and use it in GitHub Desktop.
multi sub fizzbuzz(Int $ where { $_ %% 15 }) { 'FizzBuzz' }
multi sub fizzbuzz(Int $ where { $_ %% 5 }) { 'Buzz' }
multi sub fizzbuzz(Int $ where { $_ %% 3 }) { 'Fizz' }
multi sub fizzbuzz($number) { $number }
(1 .. 100)».&fizzbuzz.join("\n").say;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment