# if else

    my $one = 1;

    if $one eq "2" {  # $one coerces into a Str
    	say "this won't execute";
    } elsif $one eq 2 {
    	say "this also won't execute";
    } else {
    	say "$one was not found";
    }