- or download this
if (undef($a) || undef($b)) { ... }
- or download this
if ($a = 1) { ... }
- or download this
my ($key, $value) = s/(\w+)=(.*)/$1: $2/;
- or download this
for my $splort (foo()) {
do {
...
} until (happy($splort));
print "happy or root\n";
}