Blame | Last modification | View Log | RSS feed
nat(0). nat(X) :- nat(Y), X is Y+1.
nat(0).
nat(X) :- nat(Y), X is Y+1.