Help for this page

Select Code to Download


  1. or download this
    my @variants = keys $hash{$word}{variants};
    
  2. or download this
    my @variants = keys %{ $hash{$word}{variants} };
    
  3. or download this
    use 5.024;
    my @variants = keys $hash{$word}{variants}->%*;