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.
thowe What's the best way to pass a list as an argument and have it treated as a list of arguments and not one argument? Using an array works, but now I'm curious what the syntax would be to just pass a list object. 20:34
I guess just adding ".list" works... nm 20:39
antononcube @thowe I think you looking for the so called "flattened slurpy." 21:18
@thowe ... or the "single argument slurpy."
thowe perhaps... 21:20
I was passing a command line to Proc::Async.new() 21:21
trying to figure out a few proof of concept things for sort of a bespoke fail2ban replacement gitlab.com/-/snippets/3728669 21:34
I would want to fire up a bunch of these at the same time... Generate the monitoring/parsing objects from a set of configs. 21:37