2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00
LaTeX-examples/documents/Programmierparadigmen/scripts/prolog/istree.pl

2 lines
54 B
Perl
Raw Normal View History

2014-04-05 18:18:47 +02:00
istree(nil).
istree(t(_,L,R)) :- istree(L), istree(R).