mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-29 08:34:37 +01:00
first checkin
This commit is contained in:
parent
892b26fe7c
commit
592f5e9b3f
1 changed files with 10 additions and 0 deletions
10
xwords4/dawg/allchars.pl
Executable file
10
xwords4/dawg/allchars.pl
Executable 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;
|
||||
}
|
Loading…
Add table
Reference in a new issue