This website works better with JavaScript
Home
Explore
Help
Sign In
radu
/
LaTeX-examples
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
e42277ecda
Branches
Tags
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
prolog
/
splits.pl
splits.pl
67 B
History
Raw
1
2
splits(L, ([], L)).
splits([X|L], ([X|S], E)) :- splits(L, (S, E)).