Bernie Cosell wrote: > > Well, there's always the dull and not-fun > > open (DICT, "c:\words.txt") or die blah blah... > chomp (my @dict = <DICT>) ; > close DICT; Slightly more fun: BEGIN { @ARGV = qw(/usr/dict/words) } chomp(my @dict = <>); -- John Porter ==== Want to unsubscribe from Fun With Perl? Well, if you insist... ==== Send email to <fwp-request@technofile.org> with message _body_ ==== unsubscribe