aboutsummaryrefslogtreecommitdiff
path: root/examples/unary-ops.cup
blob: 210d718ec4bea0f5d83d4d632cdf12984beb0302 (plain) (blame)
1
2
3
4
5
6
fn main(): int {
    // !!10 -> 1
    // ~1 -> -2 
    // -(-2) -> 2
    return -~!!10;
}