Help for this page

Select Code to Download


  1. or download this
    my %hash;
    $hash{beta} = 'x';
    ...
    
    use Data::Dumper;
    print Dumper \%hash;
    
  2. or download this
    $VAR1 = {
              'alpha' => [
    ...
                         ],
              'beta' => 'x'
            };
    
  3. or download this
    print Dumper \@x;
    
  4. or download this
    $VAR1 = [
              123,
              456
            ];
    
  5. or download this
    use strict;
    
  6. or download this
    Can't use string ("x") as an ARRAY ref while "strict refs" in use at t
    +est.pl line 6.