Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
        print "\nAnagrams of $_:\n";
        print "  $_\n" foreach @words;
    }
    
  2. or download this
    use strict;
    
    ...
    }
    
    1;