This website works better with JavaScript
Home
Explore
Help
Sign In
CNI
/
Prlog
Watch
2
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
96920e094b
Branches
Tags
master
tp/basics/1
Prlog
/
tp
/
1
/
prime.lp
prime.lp
101 B
History
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).