This website works better with JavaScript
Accueil
Explorer
Aide
Connexion
radu
/
LaTeX-examples
Suivre
1
Voter
0
Fork
0
Fichiers
Tickets
0
Pull Requests
0
Wiki
Aborescence:
d85550b33b
Branches
Tags
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
prolog
/
zahlen-bis-10.pl
zahlen-bis-10.pl
86 B
Historique
Raw
1
2
3
nat(1).
nat(X) :- nat(X1),X is X1+1.
nat10(X) :- nat(X), ( X > 10 -> !, fail ; true ).