newLISP Fan Club

Forum => newLISP newS => Topic started by: Lutz on September 02, 2006, 04:51:29 PM

Title: development release version 8.9.8
Post by: Lutz on September 02, 2006, 04:51:29 PM
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/



Lutz
Title:
Post by: _ex_ on September 03, 2006, 04:58:26 PM
Awesome!

I'm thinking in lots of interesting ideas to test with this.. ;)
Title:
Post by: Fanda on September 04, 2006, 10:17:07 AM
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