»ö« Welcome to Perl 6! | perl6.org/ | evalbot usage: 'p6: say 3;' or rakudo:, or /msg camelia p6: ... | irclog: irc.perl6.org or colabti.org/irclogger/irclogger_logs/perl6 | UTF-8 is our friend!
Set by moritz on 22 December 2015.
dalek c: 2ffe382 | (Wenzel P. P. Peppmeyer)++ | doc/Language/typesystem.pod6:
show how to check for type objects
00:24
sortiz \o #perl6 07:08
TEttinger sortiz: still a decent netsplit in progress 07:16
huggable is missing! 07:17
sortiz I see!, yoleaux is missing in #perl6-dev 07:19
sortiz \o other half of #perl6 ;-) 09:05
FROGGS o/ 09:34
moritz \oo/ 10:47
nebuchadnezzar \o/ 10:55
tbrowder anyone here? 10:59
mst yes 11:00
tbrowder mornin' (where I am) mst! 11:00
is there any way, in nqp, to return or modify two or more arrays external to a subroutine? I want to avoid file scope vars but don't see how to do it 11:01
as far as i know all args to an nqp sub are read-only 11:02
moritz they aren't deeply immutable 11:03
you can't rebind them, but you can modify them
so you cannot do sub f($x) { $x := ... }
psch nqp-m: sub foo(@a) { @a[0] := "bar" }; my @b := ["baz"]; foo(@b); say(@b[0])
camelia nqp-moarvm: OUTPUT«bar␤»
moritz but you *can* do sub f(@a, @b) { @a[0] := 42 }
tbrowder ah! okay; can you append to them by increasing the array index by 1 in the assignment? 11:05
moritz or you can call nqp::push(@a, "new elem")
psch nqp-m: sub foo(@a) { @a[1823] := "bar" }; my @b := ["baz"]; foo(@b); say(@b[1823])
camelia nqp-moarvm: OUTPUT«bar␤»
tbrowder thanks, moritz!
dalek c: e544a61 | (Wenzel P. P. Peppmeyer)++ | doc/Language/testing.pod6:
move X<|is,testing> out of =item
11:21
dalek c/deleted_toc_animation: 1f146ec | Altai-man++ | html/js/main.js:
Fix for github.com/perl6/doc/issues/686
12:13
c/deleted_toc_animation: 219208b | Altai-man++ | html/js/main.js:
Remainder code for animation was deleted
12:16
tbrowder nqp-m: say("test") 12:28
camelia nqp-moarvm: OUTPUT«test␤»
tbrowder nqp-m: my $var := 0; sub f($var) { $var := $var + 1;}; say("var $var") 12:30
camelia nqp-moarvm: OUTPUT«var 0␤»
tbrowder any way to change the value of a scalar arg in a function in nqp? 12:31
travis-ci Doc build passed. Altai-man 'Fix for github.com/perl6/doc/issues/686' 12:31
travis-ci.org/perl6/doc/builds/143699225 github.com/perl6/doc/commit/1f146ecddb32
tbrowder nqp-m: my $var := 0; sub f($var) { my $v := $var + 1}; $var := f($var); say("var $var") 12:32
camelia nqp-moarvm: OUTPUT«var 1␤»
tbrowder okay, sure, that's one way 12:33
psch it's *the* way, all nqp args are copied
psch which is also why changing array fields works 12:33
travis-ci Doc build passed. Altai-man 'Remainder code for animation was deleted'
travis-ci.org/perl6/doc/builds/143699610 github.com/perl6/doc/compare/1f146...9208b35621
nebuchadnezzar I'm looking at perl6 video from YAPC::NA, but some of them don't have readable slides, I don't find where are the slides of www.yapcna.org/yn2016/talk/6600 13:02
timotimo .seen btyler 13:03
yoleaux I saw btyler 5 Jun 2016 20:35Z in #perl6: * btyler goes back to talk writing
kaare_ nebuchadnezzar: github.com/kanatohodets/perl6-and-...erlang.pdf 13:36
finanalyst @search hall ancient magic 13:38
sorry, my bad
finanalyst can anyone here help me with proc? I can't quite get output back from stderr 13:40
nebuchadnezzar kaare_: thanks a lot
moritz finanalyst: you need to run with :err, and then .err.slurp-rest or something like that 13:44
finanalyst moritz: I'll try that. I was also looking at the documentation, and read about :merge. But I cant find a way to use it. 13:45
Typically, I am using it in unit tests with: shell 13:46
shell 'myprog --flag ', :out, :merge
I was expecting to have output directed by myprog into Stderr to be merged into stdout 13:47
moritz: tried using .err.slurp-rest as you suggested. It worked. Documentation on proc could be improved to hint at that. 13:51
moritz finanalyst: please submit a PR for the docs :-) 13:52
moritz and to be fair, the docs do show an example with run(... :out).out.slurp-rest 13:52
finanalyst moritz: I used the example of run( ... :out).out.slurp-rest , but it was not obvious to me from the documentation that run( ... :err).err.slurp-rest would work until you hinted at it 14:18
The documentation also says that setting :merge to true will redirect stderr to stdout. But I havent worked out yet how to do that. 14:19
for example, when I use $proc=shell 'some_command', :err, :merge; in a test.t to be used with prove, I get a time-out failure. 14:21
MasterDuke for me, any use of :merge that i've tried so far core dumps 14:23
dogbert17 hello #perl6 14:24
MasterDuke and there aren't any tests for it in roast 14:25
dogbert17 does anyone know what the method Any.nodemap does?
dogbert17 m: d [[1,2,3],[[4,5],6,7]].nodemap(*+1) 14:27
camelia rakudo-moar 89470a: OUTPUT«5===SORRY!5=== Error while compiling <tmp>␤Undeclared routine:␤ d used at line 1␤␤»
dogbert17 m: dd [[1,2,3],[[4,5],6,7]].nodemap(*+1)
camelia rakudo-moar 89470a: OUTPUT«(4, 4)␤»
gfldex m: dd [1,[2,3],[4,[5,6]]].nodemap(*.gist); # dogbert: nodemap does not descend into sub lists 14:53
camelia rakudo-moar 89470a: OUTPUT«("1", "[2 3]", "[4 [5 6]]")␤»
parabolize knows it calls nodemap(&block, self) and nodemap is in src/core/metaops.pm. 14:55
I don't understand it. git log shows a lot of different people working on it but TimToady is the author.
dogbert17 gfldex: thx 14:56
gfldex parabolize: check metaops.pm for it's usage. Some metaops have the trait is nodal what decides if those ops recurse or stay shallow 14:58
Herby_ o/ 15:55
\o 15:59
hankache has anyone in #perl6 ever touched pygments bitbucket.org/birkenfeld/pygments-main ? 16:48
it would be great if we could update the list of built-in types and methods and keywords/ops 16:49
parabolize the perl6 lexer was made by hoelzro 16:51
the quoting could be improved too.
I was trying and failing
hankache yup 16:52
.seen hoelzro
yoleaux I saw hoelzro 8 Jul 2016 20:19Z in #perl6: <hoelzro> Zoffix: are you still seeing Linenoise build failures? it works for me on both zef and panda
hankache unfortunately pygments is the only choice we have 16:54
moritz for what?
gfldex automatic syntax highlighter for docs 16:55
parabolize there is highlighting in emacs and vim
moritz we could also use Text::VimColor
parabolize they don't do any better
haven't looked at that
moritz vim syntax hilighting for Perl 6 is mostly pretty good 16:56
hankache moritz does it highlight say "bla bla bla {@a.elems}" correctly? 16:57
or say "bla bla bla @a.elems()" ?
parabolize yes 16:58
hankache oh 16:58
parabolize but it does have trouble with some kinds of quotes
moritz it's pretty impressive
hankache too bad asciidoctor can't use Vim :( 16:59
parabolize I think it was when I started adding a lot of adverbs
hankache it can only use pygments and a couple
and highlight.js
and another ruby library
at the moment pygments is my only hope 17:00
parabolize we use pygments for docs.perl6.org in anycase 17:01
hankache i use it for perl6intro.com 17:02
hankache unfortunately i end up writing say "The zoo contains " ~ @animals.elems ~ " animals"; instead of say "The zoo contains {@animals.elems} animals"; just to get correct syntax highlighting 17:03
parabolize its the ‘’ and “” vim doesn't seem to handle 17:11
parabolize emacs had trouble with the adverbs 17:11
dalek c: d1533bb | (Zoffix Znet)++ | doc/Language/traps.pod6:
Document laziness in traps

There are several bug reports on RT that aren't bugs but lazy maps, which warrants adding this in traps.
17:22
c: f45293b | (Wenzel P. P. Peppmeyer)++ | htmlify.p6:
fix lack of unique in kind column on routines page
17:23
MasterDukeLaptop AlexDaniel: i'll start playing around 17:52
hoelzro dang, I missed hankache =( 18:24
parabolize: in which ways would you like to see quoting improved?
hoelzro .tell hankache let me know if you want some guidance in improving the Perl 6 lexer; I haven't worked on it in a while, but it shouldn't be too hard to change 18:34
yoleaux hoelzro: I'll pass your message to hankache.
parabolize hoelzro: listquotes with angle brackets. the lexer is grabbing things it shouldn't like operator definitions. white space between the angle brackets and the first and last words isn't handled correctly. gist.github.com/parabolize/5016122...34e47c4d9e 19:21
hoelzro ah, I see what you mean 20:36
dalek c: 4a11181 | (Wenzel P. P. Peppmeyer)++ | htmlify.p6:
move name to first column on /routine
21:07
c: f67e000 | (Wenzel P. P. Peppmeyer)++ | htmlify.p6:
add heading to /routine.html
moritz has brought his book in progress on leanpub: leanpub.com/deploy 21:16
El_Che moritz: thx for the link. I am also working on (parts of) that 22:05
El_Che moritz: will it be on safari when finished? 22:07
Bucciarati dssSSS 22:30
adu there is more than one way to do it... 22:31
[Coke] . 22:54
dalek c: 275d187 | (Zoffix Znet)++ | doc/Language/control.pod6:
Fix typo
23:51