2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 06:18:05 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/prolog/splits.pl
Martin Thoma a586fb4f77 Added C
2014-03-09 19:06:23 +01:00

2 lines
No EOL
67 B
Prolog

splits(L, ([], L)).
splits([X|L], ([X|S], E)) :- splits(L, (S, E)).