Help for this page

Select Code to Download


  1. or download this
    sub spelled {
        my $word = shift;
    ...
            print "[$out]<BR>\n";
        }
    }
    
  2. or download this
            print "." if ($charCount % 4) == 0;
            print "o" if ($charCount % 4) == 1;
            print "O" if ($charCount % 4) == 2;
            print "o" if ($charCount % 4) == 3;