- or download this
$foo X= $bar;
# is short for:
$foo = $foo X $bar;
- or download this
$foo += $bar;
# is short for:
...
$foo *= $bar;
# is short for:
$foo = $foo * $bar;
- or download this
$OUTFH{$name} = $OUTFH{$name} || IO::File->new(">g:\\perl_scripts\\$na
+me.log");
$FH = $OUTFH{$name} or die $!;
- or download this
my $result = $cache{$input} ||= my_function($input);