Skip to content

Instantly share code, notes, and snippets.

@aggrolite
Created December 13, 2012 06:39
Show Gist options
  • Save aggrolite/4274561 to your computer and use it in GitHub Desktop.
Save aggrolite/4274561 to your computer and use it in GitHub Desktop.
use v5.10;
say !($_ % 3) && !($_ % 5) ? 'FizzBuzz' : !($_ % 3) ? 'Fizz' : !($_ % 5) ? 'Buzz' : $_ for (1 .. 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment