Skip to content

Instantly share code, notes, and snippets.

@exodist
Created October 22, 2015 05:21
Show Gist options
  • Save exodist/9309fd2097d665c80878 to your computer and use it in GitHub Desktop.
Save exodist/9309fd2097d665c80878 to your computer and use it in GitHub Desktop.
What will this print? clever!
use strict;
use warnings;
my $count = 4;
while (1) {
print "loop: " . (5 - $count) . "\n";
no warnings 'void';
$count-- xor next if $count;
print "end\n";
last if $count < 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment