# Junctions

    my Int $i = 10;

    if $i == 1 or $i == 10 or $i == 20 {  # short-circuits
    	say "Explicit equals: Found either 1, 5, or 10";
    }

    if $i == 1|5|10 {  # all values of the junction get evaluated
    	say "Junction: Found either 1, 5, or 10";
    }