Quick actions

cmd+k|ctrl+k

Navigation

Languages

do with

Snippet info

Language

Raku

Visibility

public

Author

fernando-correa

Created

2021-03-22T22:25:35.732927Z

Updated

2021-03-22T22:28:56.092804Z

my $user;
my $product = 3.1415;

my \label = do with $user {
    .is-prime
} orwith $product {
    .nude
}

say label
INFO