Skip to content

Instantly share code, notes, and snippets.

@hipyhop
Created January 15, 2013 16:18
Show Gist options
  • Save hipyhop/4539801 to your computer and use it in GitHub Desktop.
Save hipyhop/4539801 to your computer and use it in GitHub Desktop.
CoderSumo perl entry test
print "$_\n" for map { $_ % 3 == 0 ? $_ % 5 == 0 ? "FizzBuzz" : "Fizz" : $_ % 5 == 0 ? "Buzz" : $_ } (1..100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment