small & readable scheme interpreter in C++?

后端 未结 5 2107
南方客
南方客 2021-02-01 19:06

Anyone know of a good / small scheme interpreter in C++? Perferably something < 2000 LOC, with a simple garbage collectro (either compacting or mark & sweep), no need to

5条回答
  •  情深已故
    2021-02-01 19:10

    There's also Gambit Scheme. It's also written in C and has the advantage that it's designed to be embeddable. I have personally used it to embed Scheme inside Excel 2003!

    Although it's very much work in progress it works fine and you could easily adapt it to whatever C++ needs you have.

提交回复
热议问题