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
@Whateverable
Whateverable / query
Created April 19, 2026 22:30
evalable6
my %h = (:a(1)); my %i = (:a(2); say (%h<a>:exists) && (%i<a>:exists);
@Whateverable
Whateverable / query
Created April 19, 2026 22:29
evalable6
my %h = (:a(1)); my %i = (:a(2); say (%h<a>:exists) && (%i<1>:exists);
@Whateverable
Whateverable / query
Created April 19, 2026 14:04
evalable6
say VI".uninames
@Whateverable
Whateverable / query
Created April 17, 2026 16:14
releasable6
status
@Whateverable
Whateverable / query
Created April 16, 2026 22:10
evalable6
my $path = "/a/rel/path"; say $path.IO.relative("/a");'
@Whateverable
Whateverable / query
Created April 16, 2026 19:21
evalable6
my $p = run ("echo","foo",:out); $p.out.slurp.say'
@Whateverable
Whateverable / query
Created April 16, 2026 19:05
evalable6
my $a = run
@Whateverable
Whateverable / query
Created April 13, 2026 15:45
notable6
weekly
@Whateverable
Whateverable / query
Created April 12, 2026 05:16
bisectable6
old=2025.01 new=2025.02 class Foo {has $.a; method test {$.a = 5}}; my $f = Foo.new; $f.test; say $f.a
@Whateverable
Whateverable / query
Created April 11, 2026 19:22
bisectable6
class Foo {has $.a; method test {$.a = 5}}; my $f = Foo.new; $f.test; say $f.a;