Page 1 of 1

development version newLISP 8.6.1

Posted: Mon Jul 04, 2005 2:18 pm
by Lutz
Many improvements and additions,

for details see change notes: http://newlisp.org/downloads/developmen ... -8.6.1.txt

for files see: http://newlisp.org/downloads/development/

Lutz

Posted: Tue Jul 05, 2005 6:06 am
by HPW
Thanks for the new 'source' option.

Prior:

Code: Select all

(setq StrList(map source(list 'symb1 'symb2 'symb3 ... 'symbn)))
(dolist (MyStr StrList)(print MyStr))
Now:

Code: Select all

(setq MyStr(source 'symb1 'symb2 'symb3 ... 'symbn))
(print MyStr)
As always: Shorter and better to read.
;-)