development release newLISP v.9.2.11

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

development release newLISP v.9.2.11

Post by Lutz »

A fix for trailing slashes in the 'directory?' predicate on Win32. Fixes for TRU64 in 'ends-with' and Solaris 'rand'.

For files and changes notes see: http://newlisp.org/downloads/development/

Lutz

Jeremy Dunn
Posts: 95
Joined: Wed Oct 13, 2004 8:02 pm
Location: Bellingham WA

Post by Jeremy Dunn »

Suggestion for a function enhancement. The example in the documentation for the APPLY function shows that

(apply op '(1 2 3 4 5) 2)

is the same as

(op (op (op (op 1 2) 3) 4) 5)

Could we enhance this to take lists of function names so that

(apply '(op2 op1) '(1 2 3 4 5) 2)

is the same as

(op2 (op1 (op2 (op1 1 2) 3) 4) 5)?

By the way, Froliche Weinachten Lutz!

Locked