jubilatious1
jubilatious1
I just think it's a common task...get a list of values (let's say _comma-separated_), split on the separator, and select out desired elements. So for example, get rows of employee...
I'm going to cut to the chase here and suggest that the problem results from improper invocation of the OEIS System. There's no way the following should happen: ```raku ~...
I tried that in an old REPL (2023.05) and the `14` endpoint shows up: ```perl6 ~ % raku Welcome to Rakudo™ v2023.05. Implementing the Raku® Programming Language v6.d. Built on...
@ab5tract said: > I'd rather we simply throw an exception in the case of commas being used to conjoin seqeunces, rather than try to make the endpoints align. I hesitate...
Most "examples" URLs are broken: https://examples.raku.org/categories/cookbook.html https://examples.raku.org/categories/cookbook/03dates-and-times/ https://examples.raku.org/categories/cookbook/03dates-and-times/03-03-epoch-to-datetime.html
Possibly irrelevant, but is this related to your issue (@codesections ) filed regarding LookArounds (which I can't find atm)?
> Should :sigspace enable backtracking on the atom preceeding ? The question is really, _"What constitutes an atom when `:sigspace` is enabled"_? If one wants to have whitespace respected without...
(Cont'd) Now look at backtracking: ```perl6 [2] > "motif" ~~ m/ or | if /; 「if」 [3] > "motif" ~~ m/ \w+ or | if /; 「if」 [4] > "motif"...
(cont'd) ```perl6 [16] > "money penny" ~~ m:s/ \w+ /; 「money 」 [17] > "money penny" ~~ m:s/ \w+ \w/; 「money p」 [18] > "money penny" ~~ m:s/ \w+ \w**5/;...
It's going to take a long time for me to understand this issue. ```raku #Rakudo 2023.05 say "________no adverbs:\n"; say 'a' ~~ / ^\S* a$ /; #「a」 say 'a '...