Help for this page

Select Code to Download


  1. or download this
    %o= (a=>'a',
         b=>'b',
         c=>'c');
    
  2. or download this
    use strict;
    my %o;
    ...
    my @foo;
    @foo=@o{"c".."e"};
    print @foo;
    
  3. or download this
    @o("a","e","f")