Page 1 of 1

development release version 8.9.8

Posted: Sat Sep 02, 2006 11:51 pm
by 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/

Lutz

Posted: Sun Sep 03, 2006 11:58 pm
by _ex_
Awesome!
I'm thinking in lots of interesting ideas to test with this.. ;)

Posted: Mon Sep 04, 2006 5:17 pm
by Fanda
Thank you for the speed up!

Code: Select all

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 :)

Code: Select all

> (map pow (sequence 1 10))
(1 4 9 16 25 36 49 64 81 100)
Fanda