Help for this page

Select Code to Download


  1. or download this
    c:\@Work\Perl\monks>perl -wMstrict -MData::Dump -e
    "my ($w, $x, @y, @z);
    ...
    ("x", "Eks")
    ("y", ["Why?", "Zee-List-Is-Flattened"])
    ("z", [])
    
  2. or download this
    c:\@Work\Perl\monks>perl -wMstrict -le
    "my %hash = (4 => 12, 34 => 102);
    ...
    "
    4 => 12
    34 => 102
    
  3. or download this
    c:\@Work\Perl\monks>perl -wMstrict -le
    "my %hash = (4 => 12, 34 => 102);
    ...
    "
    4 => 12
    34 => 102