index
:
cup
master
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
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; }