So this would be a no-no:
unless ($this > $that) { do_something(); }
for my $i (@list) { next unless $i % 2 == 0; do_something(); }
So last example should be:
for my $i (@list) { next if not $i % 2 == 0; do_something(); }
unless ($this) { ... } next unless $this;
So this would be a no-no:
He's happy they're used to postfix statements however he says that these should only be used for flow control. For eg.