Conditional structures
if/else
if won() -> $prize {
say "You won $prize.";
}given/when
given lc prompt("Done? ") {
when 'yes' { return }
when 'no' { next }
default { say "Please answer either yes or no." }
}Ternary operator
$expression ?? do_something !! do_fallbackOther short-circuiting operators
Last updated