Help for this page

Select Code to Download


  1. or download this
    my %hash = ( foo => 1, bar => 2, baz => 3 );
    print "@{[%hash]}";
    
  2. or download this
    print((reduce { $a . ($$...$$ ? ' => ' : ',') . $b } %hash), $/);