Help for this page

Select Code to Download


  1. or download this
    $ perl -MO=Deparse -wE '$foo{a}=1; $foo{b}=2; say join",", @foo{qw#a b
    +#}'
    BEGIN { $^W = 1; }
    ...
    $foo{'b'} = 2;
    say join(',', @foo{'a', 'b'});
    -e syntax OK