Skip to content

Instantly share code, notes, and snippets.

View Whateverable's full-sized avatar
☺️
Having fun on #raku on Libera.chat

Whateverable bots Whateverable

☺️
Having fun on #raku on Libera.chat
View GitHub Profile
enum ( 0 => "Oh no Peano!" does role { method Numeric() { 1|-1 but 0 } }; say +0 # hmmm
role Foo {}; say Foo.new.^methods(:all)
patrickb
@Whateverable
Whateverable / result
Created April 29, 2025 13:22
Whateverable
2025-04-29T11:11:54Z #raku <wayland76> melezhik Regarding AST, while there's no optimisation improvements yet, it should give the opportunity for better optimisation in some cases. In https://dev.to/fco/the-future-of-red-orm-for-raku-44gf skim down to the section called "The promise of RakuAST". Short version: We might be able to compile some blocks to SQL and run them on the database server.
@Whateverable
Whateverable / query
Created April 25, 2025 16:58
releasable6__
next
@Whateverable
Whateverable / query
Created April 25, 2025 13:33
evalable6
what way is that?
@Whateverable
Whateverable / result
Created April 25, 2025 00:11
Whateverable
Saw 1 occurrence of deprecated code.
================================================================================
The PERL6LIB environment variable being set, support will be removed with v6.e.
Please use RAKULIB instead.
--------------------------------------------------------------------------------
Please contact the author to have these occurrences of deprecated code
adapted, so that this message will disappear!
@Whateverable
Whateverable / query
Created April 24, 2025 07:52
evalable6
sub mutli {}; mutli foo ($, $) {...} # hmm
@Whateverable
Whateverable / query
Created April 24, 2025 07:48
evalable6
mutli ($, $) { .. } # actual TTIA...?
@Whateverable
Whateverable / query
Created April 24, 2025 07:47
evalable6
mutli ($x, $y) { ... } # expecting TTIA..