artful-newlisp
artful-newlisp copied to clipboard
Artful Lisp - newLisp Modules for a variety of things. Finally seeing a few updates in late 2012.
2020-08-18 Claude Marinier The parser is dying on a double-quoted empty field. Add this case to regex-token-empty and modify related code. Found this while processing a license manager report. The...
2019-07-18 Claude Marinier Look for and remove a UTF-8 BOM (byte order mark). It's a special three byte sequence. It appears as part of the first item. Without handling it,...
with the 10.6 reference manual, function name have been deprecated.
I am a total newbie to newLisp and am trying out the artful-newlisp implementation of mysql. I was able to get the standard distribution to work with mysql 5.5, but...
Hello, In this definition: (define (run-server (port 8080) (path "/RPC2")) (setf server-path path) (setf SocketServer:handler handler) (println "Starting server") (SocketServer:serve port)) Isn't it supposed to be (SocketServer:SocketServer port)?