EISL, again

Contrary to my last post, I've dived head-on into EISL. The maintainer is very helpful, and although I haven't changed the core interpreter/compiler it's not hard to add functionality using the FFI.

Easy-ISLisp

I'm trying to use it as a safe, but at least somewhat efficient, language to write UNIX programs in so access to OS libraries is important.

Pros are implementation is nice and small and understandable (in stark contrast to sbcl). This is possibly because the implemented language is also small, not too different to R5RS Scheme. Cons are the FFI you use to wrap UNIX APIs is non-standard, and no threads (but this is less of an issue if modern hardware is NUMA-like). Performance is fine but probably not worth worrying too much about, you should call C/C++ code using FFI for that anyway.

ISLisp Standard

Back to my gemlog