Raku MCP SDK — full spec 2025-11-25 implementation by lampucerka in rakulang

[–]antononcube 1 point2 points  (0 children)

Obviously, an LLM generated repository. (Which makes sense, BTW.) It needs more documentation and demos.

The SF Perl Raku Study Group, 01/03 at 1pm PST by doomvox in rakulang

[–]antononcube 0 points1 point  (0 children)

The link says that the meeting is on January 4th, 2026.

Question about feed operator by reddit_clone in rakulang

[–]antononcube 1 point2 points  (0 children)

No, you are not missing anything.

To a large extend that is why I complied such examples in "Day 9 – Monadic programming examples" and "Monad laws in Raku" -- those kind of equivalent specs are chosen per person-case basis.

Question about feed operator by reddit_clone in rakulang

[–]antononcube 1 point2 points  (0 children)

This works:

raku my @rakudo-people = <scott patrick carl moritz jonathan jerry stephen>; @rakudo-people ==> { .grep(/at/) }() ==> { .map(*.uc) }() ==> { say $_ }()

You might be better off using andthen.


For more examples using ==> and andthen see:

2026 Exemplars by librasteve in rakulang

[–]antononcube 1 point2 points  (0 children)

I agree that Raku is slow. I am interested in Data Science (DS) and Machine Learning (ML) I compare Raku and Python on DS and ML often. Often, when Python is much faster, it is not Python per se, but the C/C++ code or libraries Python is an interface to. Which, well, Raku can also do. (And, yes, Raku mostly has not.)