code wiki / (root) / _shr6.nx

_shr6.nx source

↩ module page · 7 lines · 137 B

1import "nx_syscalls.nx" 2func main() -> i64 { 3 let neg: i64 = 0 - 8 4 let r: i64 = neg >> 1 5 if r < 0 { return 7 } 6 return 9 7}