Thread Scope Frage (5 answers)
Opened by Kuerbis at 2018-03-06 16:12

Kuerbis
 2018-03-06 16:12
#188101 #188101
User since
2011-03-20
938 Artikel
BenutzerIn
[default_avatar]
Hallo,

wirken sich hier binmode und open auch auf den Code in My::Module aus?

Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env perl
use warnings;
use strict;
use Encode::Locale qw();

use My::Module;

binmode STDIN,  ':encoding(console_in)';
binmode STDOUT, ':encoding(console_out)';
binmode STDERR, ':encoding(console_out)';

use open ':encoding(locale)';

View full thread Scope Frage