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.
lakmatiol How would I infinitely cycle a lazy sequence. That is, from <a b c d> to (a b c d a b c d ...) 22:47
Nemokosch m: my @cycled = <a b c d>.Slip xx *; say @cycled[^20]; 22:49
Raku eval (a b c d a b c d a b c d a b c d a b c d)
Nemokosch seems to work
lakmatiol ah, clever 22:54