Conditionals

Save two keystrokes!
Fairly typical if…else style construct.
Note no parentheses needed around the condition.
if $x == 42 {
    say "It's the answer!";
} elsif $x == 7 {
    say "It's perfect!";
} else {
    say "It's some other number.";
}
Type :next to continue