Quick actions

cmd+k|ctrl+k

Navigation

Languages

Untitled

Snippet info

Language

Raku

Visibility

unlisted

Author

legacy-anonymous

Created

2026-06-26T03:50:12.471345Z

Updated

2026-06-26T03:50:12.471345Z

my %info   = name => 'debian.torrent', length => 6555;
my @files  = %info<files>:exists
				              ?? %info<files>.map: {%(:path(.<path>.join('/')), :length(.<length>))}
                              !! [ %(:path(%info<name>), :length(%info<length>)) ];
my $total-size = @files>>.<length>.sum;
say @files>>.<length>.raku;
say @files.raku;
INFO