first checkin

This commit is contained in:
ehouse 2003-12-10 06:05:19 +00:00
parent 282cd3fbb1
commit 22fb3f8108

10
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;
}