🦋 Welcome to Raku! raku.org/ | evalbot usage: 'p6: say 3;' or /msg camelia p6: ... | irclog: colabti.org/irclogger/irclogger_log/raku
Set by ChanServ on 14 October 2019.
rypervenche I'm curious as to why all of the actions on docs.raku.org/language/grammar_tut...ar_actions use the .new method, whereas some of the ones on docs.raku.org/language/grammars#Cr...g_grammars don't. 02:16
sega_dreamcast Hi 02:29
Which is better Ruby or Python ?
titsuki Hi #raku. I have a question on my module Algorithm::LDA. 02:45
Does anyone know how to solve this error?: travis-ci.org/titsuki/raku-Algorit.../648070169
I couldn't reproduce this error on my local environment.
elcaro titsuki: I can replicate the failure on my Centos6 box, if that helps 04:09
cpan-raku New module released to CPAN! Tomty (0.0.8) by 03MELEZHIK 04:13
titsuki elcaro: Thanks! then this problem may occur on little bit outdated environment like Ubuntu16.04(the travis-ci environment uses it) or CentOS6. 04:14
elcaro yeah, i would say so. I tend to hit issues that don't affect users on newer os's 04:19
jmerelo m: $x = "\x[e59]\x[e59]"; say ++$x 06:16
camelia 5===SORRY!5=== Error while compiling <tmp>
Variable '$x' is not declared
at <tmp>:1
------> 3<BOL>7⏏5$x = "\x[e59]\x[e59]"; say ++$x
jmerelo m: my $x = "\x[e59]\x[e59]"; say ++$x
camelia ๑๐๐
jmerelo m: my $x = "\x[e59]\x[e59]"; say --$x
camelia ๙๘
jmerelo my $x; say ++$x 06:25
m: my $x; say ++$x
camelia 1
jmerelo m: my $x; say $x++
camelia 0
jmerelo m: my $x; $x++; say $x
camelia 1
jmerelo m: my $x=""; $x++; say $x 06:26
camelia
jmerelo m: my $x="0"; $x++; say $x
camelia 1
jmerelo m: my $was٧ = "ثمانية٧"; $was٧++; say $was٧ 06:31
camelia ثمانية٨
jmerelo m: my $$เลขไทยเลขไทย="๙๙"; 06:37
camelia 5===SORRY!5=== Error while compiling <tmp>
Cannot declare a variable by indirect name (use a hash instead?)
at <tmp>:1
------> 3my $7⏏5$เลขไทยเลขไทย="๙๙";
jmerelo m: my $เลขไทย="๙๙"; $เลขไทย++; say $เลขไทย 06:38
camelia ๑๐๐
jmerelo Hum, geth is down again... 06:41
patrickb .tell stanrifkin Can I kindly ask you to create a issue ticket on github about your rakudobrew not creating perl6 executable with the 2020.01 release? 08:12
is tellable dead? :-( 08:13
rindolf patrickb: there is MemoServ too 09:34
cpan-raku New module released to CPAN! Math::Libgsl::Complex (0.0.3) by 03FRITH 13:03
cpan-raku New module released to CPAN! Math::Libgsl::Matrix (0.0.3) by 03FRITH 13:34
Geth doc: 93a9f0b2f9 | (Elizabeth Mattijsen)++ | doc/Language/variables.pod6
Document $*TZ better
14:39
linkable6 Link: docs.raku.org/language/variables
Geth doc: 18c09e5e41 | (Elizabeth Mattijsen)++ | doc/Language/variables.pod6
Better wording of $*TZ's intent
14:49
linkable6 Link: docs.raku.org/language/variables
Geth doc: 78141c20c4 | Coke++ | doc/Language/variables.pod6
fix typo

  + other minor updates
14:59
linkable6 Link: docs.raku.org/language/variables
lizmat [Coke]++ 15:02
[Coke] oh good. :) 15:28
Phi Sorry nine, we were disconnected. 18:02
How did you manage to compile raku in Termux on Android? I made an attempt, but got errors about Raku not supporting 4-byte integers, or something of the sort. 18:03
hythm any suggestions on how to troubleshoot this issue? github.com/hythm7/Pakku/issues/6 18:11
[Coke] hythm: side note, you use an external module, should probably include it in the depends section in META6.json 18:13
(makes it easier for folks trying to test out the repo, then then can eaisly install all the deps with `zef install --deps-only .` 18:14
rypervenche Does anyone know what I'm doing wrong here? My grammar looks to create a parse tree correctly, however it only puts Any into the array, it seems: gist.github.com/rypervenche/2a42fb...df93369d08 18:16
Phi Did anyone else succeed in compiling Raku in Termux on Android? 18:18
hythm [Coke] fair point. I will include the dependencies in META6.json,,, it will help in testing
[Coke] ... finally got to the point where I could duplicate your error. Then I tried your diagnostic step (so many more modules after that point. :) 18:23
lizmat weekly: fluca1978.github.io/2020/02/10/Per...nge47.html 18:24
notable6 lizmat, Noted! (weekly)
[Coke] I find it interesting that the installer has so many module deps. 18:26
hythm [Coke] true, many modules i tried commenting all modules and add one by one, but could not spot a pattern to understand what is the problem 18:27
hythm i ts better to have an installer without dependencies at alll, but i think making use of all the good things in the ecosystem and easily extend the module in the future outweighs the cons of depes, especially it can all be fat packed together later 18:29
melezhik I have this error on windows - Enabled extracting backends [git path psunzip] don't understand C:\Users\dvfwci/.zef/tmp\1581454855.4244.7547\Sparrow6-0 21:02
what am I supposed to install to my windows server to make zef install work? 21:03
Grinnz that's some nice toothpick leaning :D 21:05
good thing windows never made / valid in files 21:06
Geth doc: 0fa05198a7 | (Ben Davies)++ | doc/Type/IO/Socket/Async/ListenSocket.pod6
Reword IO::Socket::Async::ListenSocket's page's first paragraph
21:15
linkable6 Link: docs.raku.org/type/IO::Socket::Asy...stenSocket
rypervenche So I think I figured out the cause of my grammar issue, but I'm not sure how to resolve it. Can I not simply use the $<phone-number> variable as I have here? It looks as though it's nested maybe from the output below: gist.github.com/rypervenche/2a42fb...df93369d08 21:19
melezhik Grinnz: FIY I finnaly sorted it out by install git-bash (with unix utilities) 21:36
xinming_ m: my @h; @h.push: <d>, <b c>; @h.perl.say; my ($val, @list) := @h; given @h { when ($val, @list) { "haha matched".say; }; }; 21:52
It really amazed me that this kind of example can work. 21:53
m: my @h; @h.push: <d>, <b c>; @h.perl.say; my ($val, @list); given @h { when :($val, @list) { [$val, @list].perl.say; }; }; 21:59
In this case, How can I initialize the $val, and @list directly pleaes?
xinming_ hmm, Just realized smart match shouldn't do assignment 22:01