# New Ticket Created by Daniel Carrera # Please include the string: [perl #66060] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=66060 >
Hello, Using a Rakudo compiled yesterday from the Git repo: % cat test.p6.pl my $content = $*IN.slurp; $content = uc $content; % % perl6 test.p6.pl < test.p6.pl no ICU lib loaded in method Any::uc (src/gen_setting.pm:392) called from Main (test.p6.pl:2) % Strangely, the problem is unique to "uc". If you replace "uc" by "lc" the problem goes away. % cat test.p6.pl my $content = $*IN.slurp; $content = lc $content; % % perl6 test.p6.pl < test.p6.pl % Daniel.