newLISP Fan Club

Forum => newLISP in the real world => Topic started by: Tim Johnson on September 15, 2009, 03:50:13 PM

Title: Use of 'at' sign and comma
Post by: Tim Johnson on September 15, 2009, 03:50:13 PM
This is a smbihm (stop me before I hurt myself) kind of question:

I'm writing a function that processes a list recursively. I'm using

@

at the beginning of a sublist to signal the function code to concatenate the rest of

the sublist into [var="value"] pairs

and

,

at the beginning of the sublist to tell the function code to evaluate the remainder

of the sublist.

<grin> sounds like a certain _other_ lisp doesn't it?</grin>

Any potential problems with that "down the road"?

thanks

tim
Title:
Post by: Kazimir Majorinc on September 16, 2009, 05:28:59 AM
I wouldn't expect problems with that.
Title:
Post by: Tim Johnson on September 16, 2009, 08:30:06 AM
Quote from: "Kazimir Majorinc"I wouldn't expect problems with that.

Thanks. I didn't think any symbol would be a problem, but it is good

to have a second opinion.