first checkin

This commit is contained in:
ehouse 2003-12-10 06:05:19 +00:00
parent 892b26fe7c
commit 592f5e9b3f

10
xwords4/dawg/allchars.pl Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/perl
# Print all ascii characters (for pasting into Makefiles etc. when you
# don't know what key combination produces them)
use strict;
for ( my $i = int(' '); $i <= 255; ++$i ) {
printf "%.3d: %c\n", $i, $i;
}