@screwtape
I'm not sure what to make of this Lisp & C article, but it's at least somewhat interesting.
@dougmerritt @screwtape also assuming the worst case scenario in which CL was not good enough for producing the final product, in any case CL was good enough for an initial prototype of the idea (one of the selling point of CL) and moreover the C implementation and the KC3 language took advantage from some of the CL programming language idea.
BTW, PicoLisp followed the contrary path. The author wrote a simple but efficient interpreter, with fast C FFI, a builtin DBMS and an efficient management of external entities. And he used it in projects for his customers.
@screwtape
@mzan
I definitely have some great picolisp friends.
Do you worry about even picolisp bifurcating lisp programming culture that has been somewhat continuously intact inside common lisp conforming implementations ? Why not use embeddable common lisp?
@dougmerritt
... I don't see a problem of fragmentation, because Lisp is born to be fragmented. Also assuming to use only ECL, there can be an ECL with a set of macro supporting the PicoLisp way, and this is still a fragmentation. Every CL DSL is a fragmentation.
PicoLisp specifies in details also its run-time, while in ECL there are less details. PicoLisp removed many features from an hypotetical CL implementation, both for simplifying the run-time, but also as design choice, for making more clear what to use as calls to the C-world. Every advanced data structure must be a C library. In ECL you can be tempted to use CL libraries, instead.
But the most important aspect: one of the problems of fragmentation, is code reuse. But in an embedded context, usually the majority of code reuse is in the called C functions. Not in the business rules specified using PicoLisp or ECL.