development release version 8.9.8

Started by Lutz, September 02, 2006, 04:51:29 PM

Previous topic - Next topic

Lutz

This development release enhances 'net-eval' and other functions when working with newLISP server nodes, which now can answer HTTP GET and PUT requests.



Now 'load', 'save', 'read-file', 'write-file' and 'append-file' can all specify URLs for loading and saving programs and retrieving or storing files from and to remote server nodes via standard HTTP protocols.



Now remote nodes in a distributed computer network running newLISP in server mode can be managed completely via newLISP.



For files and change notes see here: http://newlisp.org/downloads/development/">http://newlisp.org/downloads/development/



Lutz

_ex_

#1
Awesome!

I'm thinking in lots of interesting ideas to test with this.. ;)

Fanda

#2
Thank you for the speed up!
newLISP v.8.9.7 on Win32 MinGW.

> (set 'N 1000000)
1000000
> (time (pow 5) N)
234
> (time (mul 5 5) N)
94

newLISP v.8.9.8 on Win32 MinGW.

> (set 'N 1000000)
1000000
> (time (pow 5) N)
63
> (time (mul 5 5) N)
94
>


My favorite use - squares :)
> (map pow (sequence 1 10))
(1 4 9 16 25 36 49 64 81 100)


Fanda