Re: 'CALL-ME' Math problem?

2021-03-13 Thread Wenzel P. P. Peppmeyer
On 02/03/2021 09:12, ToddAndMargo via perl6-users wrote: Math problem:     x = 60÷5(7−5) raku -e 'say 60÷5(7−5)' No such method 'CALL-ME' for invocant of type 'Int'   in block at -e line 1 Seems raku does not like the ().  How do I fix this and maintain the flow and look of the equation?

Re: Documentation for error messages

2016-10-24 Thread Wenzel P. P. Peppmeyer
On Mon, 24 Oct 2016, Parrot Raiser wrote: Where's the best current description of error messages from file "open" commands, and how to control them? `git grep 'does X::IO'` is your best bet right now because some X::IO-exceptions are not documented yet.

Re: [perl #128321] Int.Capture is empty

2016-06-06 Thread Wenzel P. P. Peppmeyer
On Sun, 5 Jun 2016, Elizabeth Mattijsen via RT wrote: On 05 Jun 2016, at 09:52, Wenzel Peppmeyer (via RT) wrote: # New Ticket Created by Wenzel Peppmeyer # Please include the string: [perl #128321] # in the subject line of all future correspondence about

Re: [perl #127305] EXPORT ignored when unit module/package is used

2016-01-20 Thread Wenzel P. P. Peppmeyer
On Mon, 18 Jan 2016, Lloyd Fournier via RT wrote: gfldex, I see you've edited the second EXPORT example, but to me it's made it much less clear what's going on. I'm not happy with that example myself and intend to change it. I see where you are going, trying to show that the power of ::T

Re: [perl #126664] .roll on a Range of Num ain't random

2015-11-27 Thread Wenzel P. P. Peppmeyer
On Thu, 26 Nov 2015, Elizabeth Mattijsen via RT wrote: (0.1 .. 0.3).roll(10).say; What did you expect? a selection of 0.1, 0.2, 0.3 ?? or 10 random values between 0.1 and 0.3 inclusive? I would (naive) expect 10x a value between 0.1 and 0.3 . Analog to: (0.1, 0.2, 0.3).roll(10).say; #

Re: [perl #126459] LEAVE block skipped when die is called

2015-10-26 Thread Wenzel P. P. Peppmeyer
Removing 'exit 1' get's the LEAVE block called. In my eyes the LEAVE block should be called in that case too, because it may contain cleanup code and the CATCH may be in a different compunit, what will cause subtile bugs that are hard to test.