Thread Scope Frage
(5 answers)
Opened by Kuerbis at 2018-03-06 16:12
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)'; |