Name: Anonymous 2012-06-02 13:53
typo = 0;
while (typo < 10): # timeout
typ0 = typo + 1Compared to:
use strict;
my $typo = 0;
while ($typo < 10) {
$typ0 = $typo + 1 # will abort with error
}
typo = 0;
while (typo < 10): # timeout
typ0 = typo + 1
use strict;
my $typo = 0;
while ($typo < 10) {
$typ0 = $typo + 1 # will abort with error
}
(do ((typo 0))
((> typo 10))
(incf typ0))
UNDEFINED VARIABLE:
type0