예제 #1
0
파일: Var.java 프로젝트: wvelandia/tuprolog
 public boolean isCompound() {
   Term t = getTerm();
   if (t == this) {
     return false;
   } else {
     return t.isCompound();
   }
 }