when i am uesing JESS in java, i got an error package jess doens not
exist(import jess.*). where can i get it. or what i have to do to correct
this error.
import jess.*;
public class ExSquare {
public static void main(String[] unused) {
try {
Rete r = new Rete();
r.eval("(deffunction square (?n) (return (* ?n ?n)))");
Value v = r.eval("(square 3)");
System.out.println(v.intValue(r.getGlobalContext()));
} catch (JessException ex) {
System.err.println(ex);
}
}
}
this is the simple program i was executing.
i got an error that jess package does not exists.
--
View this message in context:
http://www.nabble.com/Jess-package-to-use-in-java-tf3353856.html#a9327120
Sent from the Jess mailing list archive at Nabble.com.