- or download this
our $var; - or download this
use vars qw( $var ); - or download this
use warnings; - or download this
#!perl -w - or download this
$func_ref[3]($var); - or download this
$func_ref[3]->($var); - or download this
$param_ref = \@_; - or download this
$param_ref = [ @_ ]; - or download this
$_++ for values %hash; - or download this
$hash{$_}++ for keys %hash; - or download this
$_++ for @hash{keys %hash}; - or download this
use bytes; - or download this
$INC{ 'bytes.pm' }++
if $] < 5.006;
use bytes;
- or download this
open my $fh, "<$filename"
or die "Cannot read $filename: $!";
- or download this
my $fh = do { local *FH; *FH };
open $fh, "<$filename"
or die "Cannot read $filename: $!";
- or download this
$object->$method; - or download this
$object->$method();