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
development release version 8.9.8
Thank you for the speed up!
My favorite use - squares :)
Fanda
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
>
Code: Select all
> (map pow (sequence 1 10))
(1 4 9 16 25 36 49 64 81 100)