At first sight this looks good now:
$ perl6-j -e 'class Foo is repr { has int32 $.idontcare; has Foo $.bar
}; my $a = Foo.new; say "alive"'
alive
Unfortunatly, another NullPointerException surfaces when looking at the newly
created $a:
$ perl6-j -e 'class Foo is repr { has int32 $.idontcare; h
This works now on rakudo.jvm. On rakudo.moar 'foo(|%h, a => "c")' doesn't give
the correct result, yet:
$ perl6-j -e 'sub foo(*%p) { say %p.perl }; foo(a => "b", a => "c")'
{:a("c")}<>
$ perl6-j -e 'sub foo(*%p) { say %p.perl }; my %h = a => "b"; foo(|%h, a =>
"c")'
{:a("c")}<>
$ perl6-m -e 's
# New Ticket Created by "Stephen Simmons"
# Please include the string: [perl #125499]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=125499 >
It appears that using say on object1 which contains object2, which
contains object1
# New Ticket Created by grond...@yahoo.fr
# Please include the string: [perl #125509]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=125509 >
$ perl6 --version
This is perl6 version 2015.06-68-ga47a3d8 built on MoarVM version
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #125507]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=125507 >
i'm a newbie. started playing with perl6 just recently. i wrote
a module with the help o