- or download this
for ($scalar) {...}
for (funcReturningScalar()) {..}
for ($hash{of}{some}{arbitrar}{size}{returning}{scalar}) {...}
for($$hash{returning}{refToScalar}) { ... }
# Many more
- or download this
for ($scalar) {
# do stuff;
}
- or download this
given ($scalar) {
when <<always>> {
# do stuff;
}
}
- or download this
given ($scalar) {
default {
# do stuff;
}
}