3 lines
60 B
Text
3 lines
60 B
Text
|
|
func is_odd(n) { n&1 == 1 };
|
||
|
|
func is_even(n) { n&1 == 0 };
|