Quick actions

cmd+k|ctrl+k

Navigation

Languages

with

Snippet info

Language

Raku

Visibility

public

Author

kaspik99

Created

2018-07-06T16:35:02Z

Updated

2018-07-06T16:35:02Z

my $s = 'abcdefgh';
with $s.index('b') {
    say 'Found b at ', $_;
}

my $answer = Any;
without $answer { warn "Got: {$_.perl}" }
INFO