Created
October 22, 2015 05:21
-
-
Save exodist/9309fd2097d665c80878 to your computer and use it in GitHub Desktop.
What will this print? clever!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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