2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 22:38:04 +02:00
This commit is contained in:
Martin Thoma 2014-03-09 19:06:23 +01:00
parent 25732f4421
commit a586fb4f77
8 changed files with 108 additions and 39 deletions

View file

@ -0,0 +1,2 @@
splits(L, ([], L)).
splits([X|L], ([X|S], E)) :- splits(L, (S, E)).