Help for this page

Select Code to Download


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