I think [EMAIL PROTECTED] wrote: > hi all, > > a newbie question: > > How can the following code be translated to jess code: > > String s = "my" + "string" >
Everything in Jess is a function call. The string concatenation function is "str-cat", so you would write this as (bind ?s (str-cat "my" "string")) --------------------------------------------------------- Ernest Friedman-Hill Distributed Systems Research Phone: (925) 294-2154 Sandia National Labs FAX: (925) 294-2234 PO Box 969, MS 9012 [EMAIL PROTECTED] Livermore, CA 94550 http://herzberg.ca.sandia.gov -------------------------------------------------------------------- To unsubscribe, send the words 'unsubscribe jess-users [EMAIL PROTECTED]' in the BODY of a message to [EMAIL PROTECTED], NOT to the list (use your own address!) List problems? Notify [EMAIL PROTECTED] --------------------------------------------------------------------
