development release version 8.9.8

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

development release version 8.9.8

Post 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

_ex_
Posts: 23
Joined: Wed Aug 23, 2006 3:17 pm
Location: Peru

Post by _ex_ »

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

Fanda
Posts: 253
Joined: Tue Aug 02, 2005 6:40 am
Contact:

Post 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

Locked