Help for this page

Select Code to Download


  1. or download this
    c:\perl\perl>perl -de 0
    
    ...
      DB<4> x \%hash
    0  HASH(0x1cbd91c)
       'HASH(0x1ca1f4c)' => undef
    
  2. or download this
      DB<5> %hash = ( 'key1' => 'val1', 'key2' => 'val2' );
    
    ...
       'key1' => 'val1'
       'key2' => 'val2'
      DB<7>
    
  3. or download this
    print {"key"=>"value"}, "\n";