Skip to content

Instantly share code, notes, and snippets.

@Vany
Created January 13, 2020 16:15
Show Gist options
  • Save Vany/a252ff57f286b6ab93aeb692721dbc7c to your computer and use it in GitHub Desktop.
Save Vany/a252ff57f286b6ab93aeb692721dbc7c to your computer and use it in GitHub Desktop.
fizbuz
perl -e 'for (1..100) { my $p; print $p="Fizz" unless $_ % 3; print $p = "Buzz" unless $_ % 5; print $_ unless $p; print "\n" }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment