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:
b18561fc54
Branches
Tags
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
prolog
/
splits.pl
splits.pl
67 B
Historique
Raw
1
2
splits(L, ([], L)).
splits([X|L], ([X|S], E)) :- splits(L, (S, E)).