- or download this
for (1..3) { ... }
for (@a) { ... }
for (my $i=10; $i--; ) { ... }
- or download this
while (f()) { ... }
until (f()) { ... }
- or download this
{ ... }
- or download this
if (f()) { ... }
unless (f()) { ... }
- or download this
... while f(); Including: do { ... } while f();
... for @a;
... if f();
etc
- or download this
grep { ... } @a
map { ... } @a