with
my $s = 'abcdefgh';
with $s.index('b') {
say 'Found b at ', $_;
}
my $answer = Any;
without $answer { warn "Got: {$_.perl}" }INFO
my $s = 'abcdefgh';
with $s.index('b') {
say 'Found b at ', $_;
}
my $answer = Any;
without $answer { warn "Got: {$_.perl}" }