Idorobots / spartan

A small Lisp dialect that serves me as a test bed for programming language features.
MIT License
14 stars 3 forks source link

Foreign function interface #145

Open Idorobots opened 3 years ago

Idorobots commented 3 years ago

Parts of the runtime & builtins could be embedded directly in the modules using an FFI interface. This would help with the modularization of the runtime, as well as make it possible to use native libraries on native targets.

Needs #33 , marshalling can be simplified with #46 . Related to #56 and #69