mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-05 20:45:49 +01:00
first checkin
This commit is contained in:
parent
282cd3fbb1
commit
22fb3f8108
1 changed files with 10 additions and 0 deletions
10
dawg/allchars.pl
Executable file
10
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