newLISP Fan Club

Forum => newLISP newS => Topic started by: Lutz on July 04, 2005, 07:18:25 AM

Title: development version newLISP 8.6.1
Post by: Lutz on July 04, 2005, 07:18:25 AM
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
Title:
Post by: HPW on July 04, 2005, 11:06:49 PM
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.

;-)