Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用编程语言剪辑。我在 .lisp 文件中有一些函数 X、Y、Z,比如说 A。现在我正在 .lisp 文件 B 中编写一个不同的程序,我需要使用 X、Y、Z。
如何在 Clisp 中导入函数?
clisp 实现了常见的 lisp 函数,因此:
(load 'myfile)
CLISP不是真正的编程语言。它是具有许多扩展的编程语言Common Lisp的实现。
CLISP
您可以使用函数LOAD加载文件。