Constructing a simple interpreter

后端 未结 9 2273
别跟我提以往
别跟我提以往 2020-12-15 11:41

I’m starting a project where I need to implement a light-weight interpreter. The interpreter is used to execute simple scientific algorithms. The programming language that t

9条回答
  •  遥遥无期
    2020-12-15 12:07

    One way to do it is to examine the source code for an existing interpreter. I've written a javascript interpreter in the D programming language, you can download the source code from http://ftp.digitalmars.com/dmdscript.zip

    Walter Bright, Digital Mars

提交回复
热议问题