References Needed for Implementing an Interpreter in C/C++

前端 未结 5 678
忘了有多久
忘了有多久 2020-12-02 05:06

I find myself attached to a project to integerate an interpreter into an existing application. The language to be interpreted is a derivative of Lisp, with application-speci

5条回答
  •  甜味超标
    2020-12-02 05:31

    I would like to extend my recommendation for Programming Languages: Application and Interpretation. If you want to write an interpreter, that book takes you there in a very short path. If you read through writing the code you read and doing the exercise you end up with a bunch of similar interpreters but different (one is eager, the other is lazy, one is dynamic, the other has some typing, one has dynamic scope, the other has lexical scope, etc).

提交回复
热议问题