Help for this page

Select Code to Download


  1. or download this
    # Anything to the left of a 
    # => is treated as like it's 'single quoted'
    # That means variables are not interpolated.
    
  2. or download this
    perl -MData::Dumper -le 
    '$foo = "blah"; %a = ( $foo => 42 ); print Dumper \%a'
    $VAR1 = {
              'blah' => 42
            };