nx_power_of_2_test.nx source
↩ module page · 9 lines · 319 B
1import "nx_syscalls.nx"
2import "nx_power_of_2.nx"
3
4func main() -> nx_int {
5 if nx_power_of_2(0) != 1 { return __syscall(93, 1, 0, 0, 0, 0, 0) }
6 if nx_power_of_2(3) != 8 { return __syscall(93, 2, 0, 0, 0, 0, 0) }
7 if nx_power_of_2(10) != 1024 { return __syscall(93, 3, 0, 0, 0, 0, 0) }
8 return 0
9}