This website works better with JavaScript
Home
Esplora
Aiuto
Accedi
radu
/
LaTeX-examples
Segui
1
Vota
0
Forka
0
File
Problemi
0
Pull Requests
0
Wiki
Albero (Tree):
2c4f3e97bf
Rami (Branch)
Tag
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
prolog
/
istree.pl
istree.pl
54 B
Cronologia
Originale
1
2
istree(nil).
istree(t(_,L,R)) :- istree(L), istree(R).