无意间找到了SICP的学习资料,看了一下感觉还是挺有意思的,决定开始学习这本书籍,这次介绍环境配置。

学习资料:

https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-001-structure-and-interpretation-of-computer-programs-spring-2005/index.htm

https://github.com/DeathKing/Learning-SICP

https://mitpress.mit.edu/sites/default/files/sicp/index.html

https://www.bilibili.com/video/BV1Xx41117tr?from=search&seid=14983483066585274454

参考资料:

https://www.cnblogs.com/unixart/p/9182847.html

这一篇博客比较水,主要是做个简单的记录。

配置参考如下资料:

https://www.cnblogs.com/unixart/p/9182847.html

这里补充几点:

  1. vscode插件:vscode-scheme,该插件可以提高编写scheme的效率。

  2. 博客中的code-runner设置部分:

    1. 步骤1:点左下角的齿轮,然后点设置

    2. 步骤2:搜索executorMap

    3. 步骤3

      1. 在executorMapByFileExtension中添加

        ".ss": "scheme"
      2. 如果上一步操作后依然无法运行,那么在executorMap中,将

        "scheme": "csi -script",

        修改为

        "scheme": "scheme"