🦋 Welcome to the IRC channel of the core developers of the Raku Programming Language (raku.org #rakulang). This channel is logged for the purpose of history keeping about its development | evalbot usage: 'm: say 3;' or /msg camelia m: ... | log inspection situation still under development | For MoarVM see #moarvm
Set by lizmat on 22 May 2021.
00:02 reportable6 left 00:10 kjp joined 00:49 releasable6 joined 00:50 statisfiable6 joined, bloatable6 joined 01:03 reportable6 joined 01:05 dogbert11 joined 01:08 dogbert17 left 01:50 linkable6 joined
timo twitter.com/ekuber/status/1454986910397464576 02:07
japhb That is a beautiful lint message 02:44
03:02 nine left, nine joined 03:48 greppable6 joined 03:49 nativecallable6 joined 04:13 lizmat_ joined, RakuIRCLogger left 04:14 TempIRCLogger left, lizmat left 04:15 Geth left 05:15 statisfiable6 left, squashable6 left, quotable6 left, bloatable6 left, tellable6 left, bisectable6 left, linkable6 left, releasable6 left, greppable6 left, sourceable6 left, coverable6 left, evalable6 left, committable6 left, shareable6 left, unicodable6 left, notable6 left, reportable6 left, nativecallable6 left, benchable6 left, reportable6 joined 05:16 committable6 joined, linkable6 joined 05:17 coverable6 joined, quotable6 joined, evalable6 joined 05:18 shareable6 joined, squashable6 joined 06:02 reportable6 left 06:17 nativecallable6 joined 06:18 sourceable6 joined, benchable6 joined, tellable6 joined 07:04 reportable6 joined 07:15 statisfiable6 joined, bisectable6 joined 07:17 notable6 joined, greppable6 joined 08:16 unicodable6 joined 08:25 Geth joined 08:26 lizmat_ left, TempIRCLogger joined, lizmat joined 08:28 dogbert17 joined, dogbert11 left 08:35 dogbert11 joined 08:37 dogbert17 left 08:44 dogbert17 joined 08:46 dogbert11 left 08:50 dogbert11 joined 08:53 dogbert17 left 08:56 dogbert11 left, dogbert11 joined 09:12 dogbert17 joined 09:16 dogbert11 left 09:17 releasable6 joined 09:52 dogbert11 joined 09:55 dogbert17 left 10:03 dogbert17 joined 10:04 dogbert11 left 11:04 linkable6 left, evalable6 left 11:17 bloatable6 joined
[Tux] Rakudo v2021.10-29-g580b3ba79 (v6.d) on MoarVM 2021.10-20-gcd809ee47
csv-ip5xs1.378 - 1.392
csv-ip5xs-2015.505 - 15.557
csv-parser4.064 - 4.203
csv-test-xs-200.373 - 0.374
test6.880 - 6.918
test-t1.549 - 1.598
test-t --race0.982 - 0.987
test-t-2022.379 - 22.722
test-t-20 --race7.589 - 7.654
11:52
lizmat still a top-tenner :-)
[Tux] github.blog/changelog/2021-10-31-w...code-text/ 11:57
12:02 reportable6 left 12:04 evalable6 joined 12:06 linkable6 joined
[Coke] Used to work on a MOO/MUD alternative to IRC and this was one of the reasons we had a hard time getting everyone to agree to update to Unicode back in the day. (the server is still up, I don't use it any more, but I'm pretty sure they're still using ASCII). 12:14
is 'rakubrew build-zef' getting zef latest from git? If so, should it be latest release? 12:17
(just guessing based on the git output when I run that command)
12:58 frost joined 13:04 reportable6 joined
lizmat And yet another Rakudo Weekly news hits the Net: rakudoweekly.blog/2021/11/01/2021-...0-rakoons/ 13:38
timo wakudo reekly?!
lizmat que? 13:40
:-)
timo lizmat: you could make the "our" also code-font in the tweet about our hash is map is export 13:41
lizmat indeed, good spot # timo++ 13:42
13:49 frost left 14:51 Altai-man joined, Voldenet left
Altai-man weekly: twitter.com/koto_san_kana/status/1...5496607746 14:51
notable6 Altai-man, Noted! (weekly)
14:51 Altai-man left 14:54 Voldenet joined
lizmat sena_kun: sorry, just to late for this week's weekly :-( 16:00
*too
16:02 Voldenet left 16:07 Voldenet joined
sena_kun lizmat, yeah, too bad I was stupid enough not to fix it earlier. But now we have something for the next week. :) 16:08
lizmat indeed... it's always good to have something good waiting in the wings 16:09
[Coke] .seen [Coke] 16:14
tellable6 [Coke], I saw [Coke] 2021-11-01T12:17:37Z in #raku-dev: <[Coke]> (just guessing based on the git output when I run that command)
Kaiepi will 2 Str:D given identical graphemes always be =:=? 17:38
m: say "a" =:= "a"; say "a" =:= "$('a')" 17:40
camelia True
True
Kaiepi m: say Str.new(my str $ = 'a') =:= "a" 17:41
camelia Default constructor for 'Str' only takes named arguments
in block <unit> at <tmp> line 1
Kaiepi m: say Str(my str $ = 'a') =:= "a"
camelia Impossible coercion from 'Str' into 'Str': value is of unacceptable type BOOTStr
in block <unit> at <tmp> line 1
Kaiepi m: say Str('a') =:= "a"
camelia True
timo m: say "a" but role { } =:= "a" 17:42
camelia False
timo m: say "a" but role { } ~~ Str:D
camelia True
Kaiepi it's ok for roles to distinguish Str:D in the case i'm thinking of, since they'd need the extra check anyway 17:47
if it's not possible with Str:D alone, then there should be a means of encoding named type parameters such that they're cacheable
timo m: say "oh" ~ "what" =:= "oh" ~ "what" 17:53
camelia False
Kaiepi m: ('oh' ~ 'what') => 1 ~~ -> |args { say %(args).keys.[0] =:= 'ohwhat' } 17:56
camelia WARNINGS for <tmp>:
False
Useless use of "=>" in expression "('oh' ~ 'what') => 1 ~~" in sink context (line 1)
Kaiepi m: say (('oh' ~ 'what') => 1) ~~ -> |args { say %(args).keys.[0] =:= 'ohwhat' } 17:57
camelia False
True
Kaiepi welp
m: say ((my str $ = 'oh' ~ 'what') => 1) ~~ -> |args { say %(args).keys.[0] =:= 'ohwhat' } 17:58
camelia False
True
Kaiepi m: say ((my str $ = 'oh' ~ 'what') => 1) ~~ -> |args { say %(args).keys.[0] =:= my Str:D $ = my str $ = 'ohwhat' } 17:59
camelia False
True
Kaiepi m: say ((my str $ = 'oh' ~ 'what') => 1) ~~ -> |args { say %(args).keys.[0] =:= (my Str:D $ = my str $ = 'ohwhat')<> }
camelia False
True
18:02 reportable6 left 18:04 reportable6 joined 19:28 notna joined
notna hi dev's. who has commit and the like right on github.com/rakudo/star? 19:35
it would be great if someone looks into github.com/rakudo/star/pull/167 19:36
any feedback for that pull is highly appreciated...
19:48 notna left 19:53 Kaiepi left, Kaiepi joined 20:12 linkable6 left 21:55 Xliff left, Xliff_ joined 22:13 linkable6 joined 23:39 evalable6 left, linkable6 left 23:43 dogbert17 left 23:46 dogbert17 joined