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
development version newLISP 8.6.1
Thanks for the new 'source' option.
Prior:
Now:
As always: Shorter and better to read.
;-)
Prior:
Code: Select all
(setq StrList(map source(list 'symb1 'symb2 'symb3 ... 'symbn)))
(dolist (MyStr StrList)(print MyStr))
Code: Select all
(setq MyStr(source 'symb1 'symb2 'symb3 ... 'symbn))
(print MyStr)
;-)
Hans-Peter