Re: Perl 6 script beginning lines: 'v6;' required?

2015-03-13 Thread Tom Browder
On Fri, Mar 13, 2015 at 8:01 AM, Brandon Allbery allber...@gmail.com wrote: On Fri, Mar 13, 2015 at 8:54 AM, Rob Hoelz r...@hoelz.ro wrote: ... Thanks Rob and Brandon. -Tom

[perl #124059] plan is not lazy (enough)

2015-03-13 Thread via RT
# New Ticket Created by H. Merijn Brand # Please include the string: [perl #124059] # in the subject line of all future correspondence about this issue. # URL: https://rt.perl.org/Ticket/Display.html?id=124059 $ perl6 -e'(1,4..7,9..Inf).perl.say' (1, 4..7, 9..Inf) $ perl6

Re: [perl #124059] plan is not lazy (enough)

2015-03-13 Thread Elizabeth Mattijsen
On 13 Mar 2015, at 08:32, H. Merijn Brand (via RT) perl6-bugs-follo...@perl.org wrote: # New Ticket Created by H. Merijn Brand # Please include the string: [perl #124059] # in the subject line of all future correspondence about this issue. # URL:

Re: Perl 6 script beginning lines: 'v6;' required?

2015-03-13 Thread Brandon Allbery
On Fri, Mar 13, 2015 at 8:54 AM, Rob Hoelz r...@hoelz.ro wrote: On Fri, 13 Mar 2015 07:13:31 -0500 Tom Browder tom.brow...@gmail.com wrote: I have seen the following beginning lines of Perl programs in some examples on the Perl 6 web site: #!/usr/bin/env perl6 v6; Isn't the

Perl 6 script beginning lines: 'v6;' required?

2015-03-13 Thread Tom Browder
I have seen the following beginning lines of Perl programs in some examples on the Perl 6 web site: #!/usr/bin/env perl6 v6; Isn't the 'v6' superflous given the first line? Best regards, -Tom

[perl #123969] NullPointerException on jvm for same CStruct in CStruct

2015-03-13 Thread Christian Bartolomaeus via RT
The class definition no longer results in a NullPointerException: $ perl6-j -e 'class Foo is reprCStruct { has int32 $.idontcare; has Foo $.bar }; say alive' alive But it's not possible to create an object of class Foo (works on MoarVM): $ perl6-j -e 'class Foo is reprCStruct { has int32

Re: Perl 6 script beginning lines: 'v6;' required?

2015-03-13 Thread Rob Hoelz
On Fri, 13 Mar 2015 07:13:31 -0500 Tom Browder tom.brow...@gmail.com wrote: I have seen the following beginning lines of Perl programs in some examples on the Perl 6 web site: #!/usr/bin/env perl6 v6; Isn't the 'v6' superflous given the first line? Best regards, -Tom The