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.
00:11 habere-et-disper left 06:58 camelia left 07:49 camelia joined 08:30 camelia left 08:55 camelia joined
lizmat and yet another Rakudo Weekly News hits the Net: rakudoweekly.blog/2024/08/12/2024-...6c-ending/ 13:38
librasteve \o/ 13:39
19:05 habere-et-disper joined
habere-et-disper Please can someone explain the rationale/chesterton-fence as to why combing an integer produces strings rather than Int or say IntStr ? 19:14
librasteve habere-et-disper: I'm a bit confused by your question - to my mind, the purpose of comb is to take a Str and product a Seq of it's characters, so it would be natural to coerce an Int first argument to a Str. It would be pretty easy to convert this Seq to contain Ints or Allomorphs, but I'm not sure that there is a general use-case for that so I guess you have to write it. 20:59
m: 123.comb>>.Int[1].^name.say 21:00
Raku eval Int
21:01 habere-et-disper left