Some time ago I started to work with IOLib [1] in with the aim to start a Lisp project for some network testing in CL (in lieu of Guile for better portability). I find myself with that need again and now in lieu of CL would like to try it in Arc. I need to write some basic test automation similar to the below (from the IOLib tutorial [2]). Test Example: Daytime Client IVP4/TCP: ex1-client.lisp - This example is a very simple daytime client program which contacts a server, by default at 'host' and 'port', returns a single line of text that is the current date and time, and then exits. New to Arc, I'm wondering how compatible would an Arc program be with IOLib? All the code I worked with previously were run with SBCL. If not IOLib, are there recommendations? [1] https://common-lisp.net/project/iolib/
[2] http://pages.cs.wisc.edu/~psilord/blog/data/iolib-tutorial/tutorial.html |