# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #125454]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=125454 >
$ perl6 -v
This is perl6 version 2015.06-36-g164f1e0 built on MoarVM version
2015.06-16-g
# New Ticket Created by Jonathan Stowe
# Please include the string: [perl #125455]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=125455 >
Hi,
class A { my $boo will leave { say "leaving boo" }; }
gives rise to:
Metho
At least temporarily fixed with eb398889b191d8624989
Liz
===
> On 22 Jun 2015, at 11:25, Carl Mäsak (via RT)
> wrote:
>
> # New Ticket Created by "Carl Mäsak"
> # Please include the string: [perl #125454]
> # in the subject line of all future correspondence about this issue.
> On 22 Jun 2015, at 11:41, Jonathan Stowe (via RT)
> wrote:
>
> # New Ticket Created by Jonathan Stowe
> # Please include the string: [perl #125455]
> # in the subject line of all future correspondence about this issue.
> # https://rt.perl.org/Ticket/Display.html?id=125455 >
>
>
> Hi,
>
Thinking over my programming career, there were a few occasions I had to
spend time working around floating point errors, and it was a nuisance.
There were even fewer times when I worked with transcendental numbers-
programs dealing with geometry or tones or logarithmic scales- and those
times, flo
Yary,
There already is a Perl 6 continue fractions module. Spoiler alert: it
doesn't work in the least. But I'd be happy to give you a commit bit.
I don't think we should even begin to think about including something like
that in the Perl 6 core before we have a complete, working implementation
On 2015-06-16 2:15 PM, The Sidhekin wrote:
On Tue, Jun 16, 2015 at 10:52 PM, Michael Zedeler wrote:
...and unpredictable performance is a cost you're willing to pay?
I don't write performance-critical applications, but even if I did, why would
I prefer getting the wrong answer faster?
# New Ticket Created by hanenkamp
# Please include the string: [perl #125457]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=125457 >
03:13 < zostay_> m: my @a = 1, 2, 3; @a[2] :delete; @a.perl.say; @a[3]
= 4; @a.perl.say;