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: bdf985317c3d8b1a4fdb3570ab03d3247ea8375a (
plain
) (
blame
)
1
2
3
4
5
6
fn main() { // !!10 -> 1 // ~1 -> -2 // -(-2) -> 2 return -~!!10; }