aboutsummaryrefslogtreecommitdiff
path: root/examples/comparisons.cup
blob: 0106e80fb0369abf604e9595e40d98ce3bffbe9d (plain) (blame)
1
2
3
fn main(): int {
    return (5 == 3) + (5 > 4) + (1 != 2);
}