use v6; multi odd-or-even(Int $i where * %% 2) { say "even" }; multi odd-or-even(Int $i) { say "odd"};