mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-11-16 07:48:07 +01:00
10 lines
230 B
Perl
Executable file
10 lines
230 B
Perl
Executable file
#!/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;
|
|
}
|