2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-25 22:38:04 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/prolog/istree.pl
2014-04-05 18:18:47 +02:00

2 lines
No EOL
54 B
Prolog

istree(nil).
istree(t(_,L,R)) :- istree(L), istree(R).