Help for this page

Select Code to Download


  1. or download this
    my %hash = f();
    my @keys = keys %hash;
    
  2. or download this
    my @keys = keys %{f()};
    
    #or in postfix dereferencing
    my @keys = keys f()->%*;