development version newLISP 8.6.1

Started by Lutz, July 04, 2005, 07:18:25 AM

Previous topic - Next topic

Lutz

Many improvements and additions,



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



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



Lutz

HPW

#1
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.

;-)
Hans-Peter