- or download this
#b1.pl
use strict;
...
p($_);
__END__
- or download this
#b2.pl
use strict;
...
$_="中文";
binmode STDOUT, ":encoding(gbk)";
print "$_\n";
- or download this
binmode STDOUT, ":encoding(gbk)";
print "$_\n";
__END__
- or download this
e:\home\pl>perl b1.pl
perl b1.pl
...
中文
中文