Re: JESS: calling an integer or a string

2004-06-02 Thread kimos
thanks alot my project is almost done using Jess and ill post the link to it when im done. thanks again M. Ismail (KiMoS) Citeren [EMAIL PROTECTED]: I think M.Ismail wrote: is Jess lower higher case sensitive ? is there diffrent between assert Bla and assert bla ?

Re: JESS: calling an integer or a string

2004-06-01 Thread M . Ismail
L PROTECTED] Sent: Thursday, May 27, 2004 1:40 PM Subject: Re: JESS: calling an integer or a string You can not mix java and jess.Assuming that getstring() is a method which returns String in your java class, then proper code would be:r.executeCommand("(assert (" + getstri

JESS: calling an integer or a string

2004-05-27 Thread kimos
hi there, first i want to thanks Ernest Friedman-Hill for helping me and everyone in the mailing list. you are a great help. ok here is my quastion: i have an string and i want to call it in the assert while executioncommand r.executeCommand((assert (i-have-moved))); this is what i have

RE: JESS: calling an integer or a string

2004-05-27 Thread Jason Morris
:32 AM To: [EMAIL PROTECTED] Subject: JESS: calling an integer or a string hi there, first i want to thanks Ernest Friedman-Hill for helping me and everyone in the mailing list. you are a great help. ok here is my quastion: i have an string and i want to call it in the assert while

Re: JESS: calling an integer or a string

2004-05-27 Thread Dusan Sormaz
You can not mix java and jess. Assuming that getstring() is a method which returns String in your java class, then proper code would be: r.executeCommand((assert ( + getstring() + ))); Regards, Dusan Sormaz At 11:31 AM 5/27/2004 +0200, you wrote: hi there, first i want to thanks Ernest