Esempio n. 1
0
 protected void showProg(Sexp prog, JTextArea intmsg) {
   if (!prog.isNull()) {
     intmsg.append(prog.car() + "\n");
     showProg(prog.cdr(), intmsg);
   }
 }
Esempio n. 2
0
 protected void run() {
   if (!goal.isNull()) eval(prog);
   else compileGoal(true);
 }