- or download this
\@foo
- or download this
my_sub(\@alpha, \@beta, \@gamma);
- or download this
my $hashref = \%myhash;
my $arrayref = \@myarray;
my $scalarref = \$myscalar;
- or download this
my %newhash = %$hashref;
my @newarray = @$hashref;
my $newscalar = $$scalarref;
- or download this
if ($idx2 >= $idx1)
- or download this
$size = $#$fbits - $idx2;
push @$chunks, [ (bits2num( [ @prefix, (split //, '0' x $size) ])), @$
+fbits - $size ];