This channel is intended for people just starting with the Raku Programming Language (raku.org). Logs are available at irclogs.raku.org/raku-beginner/live.html
Set by lizmat on 8 June 2022.
lizmat PSA: there will not be a Rakudo Weekly this week 09:37
Ad Meliora Any possibility of making raku projects self contained or not ? 15:18
lizmat there has been a GSoC project to do just that, but it never got further than a Proof of Concept :-( 15:20
librasteve @deoac - there is more to the story on my class vs class ... the best quite long explanation is here stackoverflow.com/a/66056086/9146565 16:35
# This class that ends up in GLOBAL... class Cro::HTTP::Client { # Lexically scoped classes, which are marked `my` and thus hidden # implementation details. This means I can refactor them however I # want, and never have to worry about downstream fallout! my class HTTP1Pipeline { # Implementation... } my class HTTP2Pipeline { # Implementation... } #
Implementation... }
^^^ this is the crux of the explanation
avuserow I'm using docker to package up a raku-based project and it is self contained. This doesn't work for many other projects but works well for a REST API over HTTP. 16:38
Ad Meliora That's a bummer 21:40