如何创建.lisp文件并在mac上运行它们?

时间:2017-09-12 07:55:13

标签: macos terminal clisp

As can be seen on the picture TextEdit on mac gives only limited options of file extensions in which I can safe a file. Lisp not included.

  1. 创建.lisp文件 https://www.tutorialspoint.com/lisp/lisp_environment.htm正在逐步描述所有内容,但它说Mac上的TextEditor可以保存.lisp文件,这是我无法做到的。

  2. 加载.lisp文件 (load" filename.lisp")导致错误:具有此类名称的文件不存在

1 个答案:

答案 0 :(得分:-2)

  1. mac上的TextEditor对文件的保存方式有限制(.txt等)。您可以使用任何其他编辑器,例如: TextWrangler ,它允许您编写文件扩展名。或者您可以使用特定于lisp的编辑器,例如:Emacs(更大规模)

  2. 当您键入(加载“filename.lisp”)时,它可能会在某个特定目录中搜​​索,该目录不存在。因此,为了避免这种情况,您应该在要打开的文件中键入完整路径。例如:(加载“/Users/macbook/Desktop/foldername/filename.lisp”)