This website works better with JavaScript
Accueil
Explorer
Aide
Connexion
CNI
/
Prlog
Suivre
2
Voter
0
Fork
0
Fichiers
Tickets
0
Pull Requests
0
Wiki
Aborescence:
96920e094b
Branches
Tags
master
tp/basics/1
Prlog
/
tp
/
1
/
prime.lp
prime.lp
101 B
Historique
Raw
1
2
3
4
% Define
#const n = 10.
compose(N) :- N=1..n, I=2..N-1, N\I = 0.
prime(N) :- N=2..n, not compose(N).