Many improvements and additions,
for details see change notes: http://newlisp.org/downloads/development/CHANGES-8.6.1.txt
for files see: http://newlisp.org/downloads/development/
Lutz
Thanks for the new 'source' option.
Prior:
(setq StrList(map source(list 'symb1 'symb2 'symb3 ... 'symbn)))
(dolist (MyStr StrList)(print MyStr))
Now:
(setq MyStr(source 'symb1 'symb2 'symb3 ... 'symbn))
(print MyStr)
As always: Shorter and better to read.
;-)