#!/usr/local/bin/perl # list dictionary definitions included with the HASBRO SCRABBLE(R) CD-ROM. # based on code by Mark Wutka # Copyright (C) 1999, John J. Chew, III # All Rights Reserved. open(TWL, "STRINGS.DAT") || die "Where is STRINGS.DAT ($!)? Aborting"; $/ = "\0"; print grep(/ /&&s/$/\n/, ); close(TWL);