1 line
46 B
Prolog
1 line
46 B
Prolog
odd(N) :- N = 0 -> false; 0 is lsb(abs(N)).
|
odd(N) :- N = 0 -> false; 0 is lsb(abs(N)).
|