# if statement

    my $one = 1;

    if $one eq "1" {           # $one is coerced into a Str: Yes
    	say "Yes"
    }

    say "Yes" if $one == "1";  # "1" is coerced into an Int: Yes