- or download this
for ( @whatever ) {
if ( 1 .. 4 ) {
# enter this block during the first four iterations, then neve
+r again
}
}
- or download this
$_ = 0;
while ($_<6) {
...
4: False
5: False
6: False
- or download this
$_ = 0
while ($_<6) {
...
4: True
5: True
6: True