development version newLISP 8.6.1

Notices and updates
Locked
Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

development version newLISP 8.6.1

Post 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

HPW
Posts: 1390
Joined: Thu Sep 26, 2002 9:15 am
Location: Germany
Contact:

Post 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.
;-)
Hans-Peter

Locked