如何在 mac 上创建 .lisp 文件并 运行 它们?
How to create .lisp files and run them on mac?
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.
创建 .lisp 文件
https://www.tutorialspoint.com/lisp/lisp_environment.htm 正在逐步描述所有内容,但它说 Mac 上的 TextEditor 可以保存 .lisp 文件,这是我做不到的。
加载 .lisp 文件
(load "filename.lisp") 导致错误:具有此类名称的文件不存在
mac 上的 TextEditor 对文件的保存方式(.txt 等)有限制。您可以使用任何其他编辑器,例如:TextWrangler,它允许您编写文件扩展名。或者你可以使用特定于 lisp 的编辑器,例如:Emacs (more massive)
当您键入 (load "filename.lisp") 时,它可能会在某个不存在的特定目录中搜索。因此,为避免这种情况,您应该键入要打开的文件的 完整路径 。例如:(加载“/Users/macbook/Desktop/foldername/filename.lisp”)
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.
创建 .lisp 文件 https://www.tutorialspoint.com/lisp/lisp_environment.htm 正在逐步描述所有内容,但它说 Mac 上的 TextEditor 可以保存 .lisp 文件,这是我做不到的。
加载 .lisp 文件 (load "filename.lisp") 导致错误:具有此类名称的文件不存在
mac 上的 TextEditor 对文件的保存方式(.txt 等)有限制。您可以使用任何其他编辑器,例如:TextWrangler,它允许您编写文件扩展名。或者你可以使用特定于 lisp 的编辑器,例如:Emacs (more massive)
当您键入 (load "filename.lisp") 时,它可能会在某个不存在的特定目录中搜索。因此,为避免这种情况,您应该键入要打开的文件的 完整路径 。例如:(加载“/Users/macbook/Desktop/foldername/filename.lisp”)