Вопрос

I am using the programming language clisp. I have some functions X,Y,Z in a .lisp file, lets say A.Now I am writing a different program in .lisp file B and I need to make use of the X,Y,Z.

How do i import functions in Clisp?

Это было полезно?

Решение

CLISP is not really a programming language. It is an implementation of the programming language Common Lisp with many extensions.

You can load files with the function LOAD.

Другие советы

clisp implements common lisp functions so:

(load 'myfile)
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top