Perl 6 language and compiler development | Logs at colabti.org/irclogger/irclogger_log/perl6-dev | For toolchain/installation stuff see #perl6-toolchain | For MoarVM see #moarvm
Set by Zoffix on 27 July 2018.
Geth rakudo: lizmat self-assigned The range '1'..9 doesn't stop at '9' github.com/rakudo/rakudo/issues/2517
d92b155ccc | (Elizabeth Mattijsen)++ | src/core/Range.pm6

Fixes R#2517
10:17
gfldex m: say (last if $_ == 5).WHAT for 1 10:42
camelia (Slip)
gfldex should a last-statement evaluate to a Slip? 10:43
m: (last if $_ == 5) orelse say $_.WHAT for 0..10
camelia (Slip)
(Slip)
(Slip)
(Slip)
(Slip)
gfldex ^^^ that raised that question
lucasb m: dd (10 if True), (20 if False) 10:48
camelia 10
Empty
lucasb I think the Empty here is expected 10:49
|Tux| Rakudo version 2018.11-11-g07d95bf9b - MoarVM version 2018.11-12-gd7a4c4c56
csv-ip5xs0.902 - 0.936
csv-ip5xs-206.936 - 7.113
csv-parser21.726 - 22.188
csv-test-xs-200.429 - 0.431
test7.398 - 7.933
test-t1.717 - 1.749
test-t --race0.760 - 0.779
test-t-2029.880 - 30.672
test-t-20 --race9.358 - 9.496
11:00
lizmat committable6: help 12:43
committable6 lizmat, Like this: committable6: f583f22,HEAD say ‘hello’; say ‘world’ # See wiki for more examples: github.com/perl6/whateverable/wiki/Committable
lizmat c: 2015.12,2016.12 .say for "1"..9 12:45
committable6 lizmat, ¦2015.12,2016.12: «1␤2␤3␤4␤5␤6␤7␤8␤9␤»
lizmat c: 2015.12,2016.12 dd $_ for "1"..9
committable6 lizmat, ¦2015.12,2016.12: «"1"␤"2"␤"3"␤"4"␤"5"␤"6"␤"7"␤"8"␤"9"␤»
Geth roast: 3ce3f589a7 | (Elizabeth Mattijsen)++ | S02-types/range.t
Add test for R#2517
13:13
Geth rakudo: dd03014548 | (Elizabeth Mattijsen)++ | src/core/Exception.pm6
Introduce a more generally applicable X::ArrayShapeMismatch
14:58
Geth roast: dogbert17++ created pull request #501:
Add tests for R#2421
15:39
lizmat m: my @a = ^5; my @b = ^10; dd @a <<+=>> @b; dd @a # this feels eh... either a case of DIHWIDT or something we should die about 15:42
camelia Array element = [5, 8, 11, 14, 17, 5, 8, 11, 14, 17]
Array @a = [5, 8, 11, 14, 17]
lizmat in other words, perhaps an infix metaop with "=" should not allow a dwim-left 15:43
timotimo m: my @a = 5; my @b = ^10; @a <<+=<< @b; dd @a 19:08
camelia Array @a = [50]
timotimo this kind of makes sense to me
dogbert17 lizmat: do you think the tests in github.com/perl6/roast/pull/501 accurately cover the bug? If so I'll merge it. 21:42