I have a minimal amount of experience with Lisp and have read the blog posts on how to implement the basic special forms which are needed to define a Lisp. I’m considering trying to write my own Lisp as a scripting language for a platform whose primary language is something that I don’t like. Thing is, I don’t really want to write code using a minimal set of primitives. I want to write in a full Lisp.

Are there any “bring your own bootstrap” Lisp implementations, which provide a more full-featured language once the basic primitives have been provided? Something that would let me go more quickly from a couple hundred lines of bootstrap code into a more full fledged language, even if the runtime is slow.

  • aartakaB
    link
    fedilink
    English
    arrow-up
    1
    ·
    10 months ago

    There’s Mal, which goes from the most basic REPL setup to more or less complete Lisp. I haven’t tried it (because the only implementation I want to make is a Brainfuck one, and that’s quite non-trivial), but it seems to be quite hackable and incremental.