RosettaCodeData/Task/Even-or-odd/Logtalk/even-or-odd-1.logtalk
2023-07-01 13:44:08 -04:00

17 lines
320 B
Text

:- object(even_odd).
:- public(test_mod/1).
test_mod(I) :-
( I mod 2 =:= 0 ->
write(even), nl
; write(odd), nl
).
:- public(test_bit/1).
test_bit(I) :-
( I /\ 1 =:= 1 ->
write(odd), nl
; write(even), nl
).
:- end_object.