Which environment, IDE or interpreter to put in practice Scheme?

后端 未结 11 1048
太阳男子
太阳男子 2021-02-05 09:19

I\'ve been making my way through The Little Schemer and I was wondering what environment, IDE or interpreter would be best to use in order to test any of the Scheme cod

11条回答
  •  感情败类
    2021-02-05 10:14

    If you just want to test your scheme code, I would recommend PLT Scheme. It offers a very complete environment, with debugger, help, etc., and works on most platforms.

    But if you also want to get an idea of how the interpreter behind the scenes works, and have Visual Studio, I would recommend Tachy. It is a very lightweight scheme interpreter written in c#. It allows you to debug just your scheme code, or also step through the c# interpreter behind the scenes to see what is going on.

提交回复
热议问题