Re: Help with promises, supplies and channels.

2022-04-07 Thread David Emanuel da Costa Santiago
s for the bash loop. I'm seeing a few hangs, also some errors returned saying: "Unhandled exception in code scheduled on thread 4" (MacOS 11.11) On Tue, Apr 5, 2022 at 12:47 PM David Emanuel da Costa Santiago mailto:deman...@gmail.com>> wrote: Hi Willia

Re: Help with promises, supplies and channels.

2022-04-05 Thread David Emanuel da Costa Santiago
l open a bug in the github. Regards, David Santiago Às 21:37 de 05/04/22, William Michels escreveu: No problems so far. say $*VM; #add as last line, returns: moar (2021.06) On Tue, Apr 5, 2022 at 11:06 AM David Emanuel da Costa Santiago mailto:deman...@gmail.com>> wrote: Hi,

Help with promises, supplies and channels.

2022-04-05 Thread David Emanuel da Costa Santiago
Hi, I'm trying to learn about promises, supplies and channels. So i made this code: """ my $p1 = Supply.interval(5); my $p2 = Supply.interval(2); my Channel $ch = Channel.new; my $prom = start react { whenever $p1 -> $interval { say "5"; } whenever $p2 -> $interval {

Re: How to use WHY on a object's method?

2022-01-17 Thread David Emanuel da Costa Santiago
-( } I've tested it here (https://replit.com/@Xliff/ThinDutifulExtensions#main.raku <https://replit.com/@Xliff/ThinDutifulExtensions#main.raku>) and it works! :) -X On Mon, Jan 17, 2022 at 12:33 PM David Emanuel da Costa Santiago mailto:deman...@gmail.com>> wrote: H

How to use WHY on a object's method?

2022-01-17 Thread David Emanuel da Costa Santiago
Hello Rakuns, How do i access the declarator block of my object method? I'm trying to do this, but it's not working: class A { #|( This is just a test with 3 parameters: * p1 - parameter 1 * p2 - parameter 1 * p2 - parameter 1 ) method test($p1, $p2, $p3) { sa

Re: too many file handles

2021-03-17 Thread David Emanuel da Costa Santiago
Now my question is this: Is this a problem with the LibCurl::Easy module, where I can raise an issue. Here: https://github.com/CurtTilmes/raku-libcurl Regards, David Santiago

Re: Newsgroups

2021-03-04 Thread David Emanuel da Costa Santiago
rchives are current: https://www.nntp.perl.org/group/perl.perl6.users/ Do you perhaps mean an RSS feed? I'll copy Ask Bjørn Hansen on this email to see what he says. Best Regards, Bill. On Thu, Mar 4, 2021 at 12:38 AM David Emanuel da Costa Santiago wrote: Hi! This mailing list isn&

Newsgroups

2021-03-04 Thread David Emanuel da Costa Santiago
Hi! This mailing list isn't being synchronized with the newsgroup perl.perl6.users anymore. The latest message i got was on 2020-08-31. The rest of the perl6 newsgroups aren't being synchronized as well. Is NNTP deprecated? Best regards, David Santiago

Re: Nested `whenever` (was Re: Help with bug)

2021-01-05 Thread David Emanuel da Costa Santiago
Às 13:25 de 05/01/21, Gianni Ceccarelli escreveu: > >received outer 0 >received outer 1 >received outer 2 >received outer 3 >received inner 0 for outer 0 >received inner 0 for outer 1 >received inner 0 for outer 2 >received inner 0 for outer 3 >received inner