Re: Example program

2020-12-04 Thread pdoherty
Have you looked into the [ffi:load-foreign-library](https://common-lisp.net/project/ecl/static/manual/Foreign-Function-Interface.html#index-ffi_003aload_002dforeign_002dlibrary) macro? You may also want to look at the CFFI entry and consider using that library (rationale and link is in docs). A

Re: Example program

2020-12-03 Thread Garrett Dangerfield
Thanks, that was very helpful. The current situation I'm facing is how to actually utilize an OBJ file. I can generate one, no problem (yay). I can link it into an EXE it doesn't seem to want to reference it. I expect I need to do some sort of "load" on it (which I can do with Lisp files) to get

Re: Example program

2020-12-03 Thread pdoherty
I can't speak to the Windows requirement, but this example I put together should help get you started: https://github.com/ethagnawl/ecl-hello-r-lisp PRD Sent from ProtonMail mobile Original Message On Dec 3, 2020, 3:45 PM, Garrett Dangerfield wrote: > Is there an simple exam