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