This website works better with JavaScript
Home
Esplora
Aiuto
Accedi
radu
/
LaTeX-examples
Segui
1
Vota
0
Forka
0
File
Problemi
0
Pull Requests
0
Wiki
Ramo (Branch):
master
Rami (Branch)
Tag
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
prolog
/
splits.pl
splits.pl
67 B
Permalink
Cronologia
Originale
1
2
splits(L, ([], L)).
splits([X|L], ([X|S], E)) :- splits(L, (S, E)).