Flowcontrol

* while (exp) { exp }

* if (exp) { exp } elsif (exp) { exp } else { exp }

* for (@array) { exp }

* for ($t=0; $t<10; $t++) { exp }

* &&, ||, and, or

* next, last

* Læs indtil du møder abc: while (<>) { /abc/ && last }

* Sub-routiner: sub navn { exp }

- argumenter til sub: @_

- lokale variable: my ($a,$b) = @_;

- explicit/implicit return