Re: Looking for suggestions on supporting code for chicken and gambit(lambdanative)
| Newsgroups | gmane.lisp.scheme.chicken |
|---|---|
| Message-ID | <[email protected]> |
> I have a program, static compiled from Chicken Scheme, that I'd like to > use in a lambdanative GUI. The plan was to simply call the program with > Gambits shell-command. Is there a better option I should consider? > This is definitely the simplest and most robusst approach, depending on how much interaction and control is needed. Alternatively, you could compile your CHICKEN code into a library, but that would be a bit of work, needs to be integrated into whatever lambdanative uses for building and usually only makes sense if the programs interact in a complex manner. felix