Help for this page

Select Code to Download


  1. or download this
    print LIST join("\n", keys %wordlist);
    
  2. or download this
    print LIST "$_\n" for keys %wordlist;
    
  3. or download this
    print LIST "$_\n" while $_ = each %wordlist;
    
  4. or download this
    print LIST map "$_\n", keys %wordlist;