Re: [perl #113886] Re: no ICU lib loaded - rakudo and parrot issue

2012-07-02 Thread Patrick R. Michaud
On Thu, Jun 28, 2012 at 08:24:31AM -0700, Patrick R. Michaud wrote:
  Am 28.06.2012 14:31, schrieb Gabor Szabo:
  The following script generates an exception
  
  use v6;
  
  my %count;
  my $s = 'שלום';
  %count{$s} = 1;
  say $s;
  say %count.perl;
  
  no ICU lib loaded

This is now fixed in HEAD and will appear in the next release:

pmichaud@kiwi:~/p6/noicu$ ./perl6 -V | grep has_icu
parrot::has_icu=0
pmichaud@kiwi:~/p6/noicu$ cat rt113886.p6 
use v6;

my %count;
my $s = 'שלום';
%count{$s} = 1;
say $s;
say %count.perl;

pmichaud@kiwi:~/p6/noicu$ ./perl6 rt113886.p6 
שלום
(שלום = 1).hash

Pm


Re: [perl #113886] Re: no ICU lib loaded - rakudo and parrot issue

2012-07-02 Thread Gabor Szabo
On Mon, Jul 2, 2012 at 9:08 AM, Patrick R. Michaud pmich...@pobox.com wrote:
 This is now fixed in HEAD and will appear in the next release:

nice, thank you!

Gabor