Help for this page

Select Code to Download


  1. or download this
        my @foo;
        my %bar;
    
  2. or download this
        my @foo = ();
        my %bar = ();
    
  3. or download this
    #!/usr/bin/perl
    
    ...
    print STDERR "\%bar_2:\n";
    Dump (\%bar_2);
    __END__
    
  4. or download this
    my $yuk;
    
  5. or download this
    my $yuk = {};
    
  6. or download this
    #!/usr/bin/perl
    
    ...
    Dump ($yuk_1); 
    print STDERR "\$yuk_2:\n";
    Dump ($yuk_2);