🦋 Welcome to the MAIN() IRC channel of the Raku Programming Language (raku.org). This channel is logged for the purpose of keeping a history about its development | evalbot usage: 'm: say 3;' or /msg camelia m: ... | Log inspection is getting closer to beta. If you're a beginner, you can also check out the #raku-beginner channel!
Set by lizmat on 25 August 2021.
Geth doc: dumarchie++ created pull request #4070:
Document X::Cannot::Empty
07:09
grondilu m: say $_::Foo.new given package { our class Foo {} } 08:11
camelia Any.new
grondilu m: $_::talk() given package { our sub talk { say "hi" } } 08:13
camelia No such method 'CALL-ME' for invocant of type 'Any'
in block <unit> at <tmp> line 1
grondilu FYI I'm trying this to eventually do something like `$_::do-stuff() given EVAL $generated-package-code` 08:14
Geth App-Rakubrew: 772cbcc5de | (Patrick Böker)++ | release-stuff/README.md
Correct release upload instructions
12:00
App-Rakubrew: 6875a2a90c | (Patrick Böker)++ | lib/App/Rakubrew/Download.pm
Detect s390x architecture
App-Rakubrew: 074e292b80 | (Patrick Böker)++ | lib/App/Rakubrew/Download.pm
Add hint to use `rakubrew build` if `download` fails to find a build
Geth App-Rakubrew: f349dec5a4 | (Patrick Böker)++ | lib/App/Rakubrew/Update.pm
Update git protocol in zef repo as well
12:29
App-Rakubrew: 2cdfe0b6ac | (Patrick Böker)++ | 4 files
Version 29
hello45 Is the Sir Nick in this room 16:45
melezhik . 17:58
[Coke] m: say <4 5 6>.are 18:44
camelia (IntStr)
Geth doc/document-are: f47bcfff25 | Coke++ | doc/Type/Any.pod6
update output formatting
18:48
doc/document-are: 9024e0f9dd | Coke++ | doc/Type/Any.pod6
preferred usage
Geth doc: fb0dd00b3f | (Elizabeth Mattijsen)++ (committed using GitHub Web editor) | doc/Type/Any.pod6
Document the .are method (#4069)

Co-authored-by: Coke [email@hidden.address]
  * Document the .are method
Co-authored-by: Coke <will@coleda.com>
18:59
linkable6 Link: docs.raku.org/type/Any
hythm hello, I have a program (uses NativeCall) that runs fine when run by raku built from `rakubrew build moar 2022.04` but behaves differently when run by raku built from `rakubrew download moar 2022.04` I think there is some issue with the pre-built packages on rakudo.org (which `rakubrew download` uses , I think). and this is for windows only, linux 19:12
packages are fine.  could that be something to do with nqp version? as `rakubrew build` builds nqp, while `rakubrew download` fetch pre built stuff.
here is the program, gist.github.com/hythm7/4c8707919d2...15e81e41cc  when run with downloaded binaries it dies in line 126 19:13
El_Che patrickb ==^
hythm google search says the error code it dies with could be that `writefunction` sub is not returning the correct type 19:17
[Coke] does nativecall type handling depend on the compiler you used to build? 19:21
hythm not sure how to answer this question, when build rakudo and nqp locally using 'rakubrew build moar 2022.04' the programs runs fine and the return code is 0, when run the same program with downloaded rakudo from `rakudo.org, or from rakubrew download 2022.04` it dies with error code 23. (On windows only) 19:25
SmokeMachine Hi! Is there someone else getting this error on zen when running GitHub actions? github.com/FCO/Red/runs/6241850837...focus=true 20:31
jujo hello, I'm trying the SocketIO module to build a tool, for some reason when I follow the examples, it seems that the server expects to find a newline 23:14
or it is discarding the last character for some reason