- or download this
macro statement_control:<my_while>($expr, &whileblock) {
while $expr &whileblock();
...
}
$i++;
}
- or download this
sub my_while(Code &expr, Code &whileblock) {
while &expr() &whileblock();
}
- or download this
use strict;
use warnings;
...
};
$i++;
};