blob: 6e2c344405caf9f1f31b6b618022db8469f3444d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/local/bin/perl
#use Jcode::Constants
my $n = 0; my $str = "";
for my $c2 (0340..0374){
for my $c1 (0200..0374){
if ($n++ % 32 == 31){ # LF for every 32 zenkaku chars
print $str, "\n"; $str = "";
}else{
$str .= chr($c2) . chr($c1);
}
}
}
warn $n;
|