時,我有一個文件,即test.lisp基本上是這樣的:閱讀下一行共同加載文件Lisp的
(load (compile-file "init.lisp"))
(my-funcA 2 3)
(my-funcB 4 5)
; bunch more lines like the last ones
裏面的init.lisp文件我想能夠讀線(我-funcA 2 3),(my-funcB 4 5)等等,並且用它做東西。這可能嗎?
我試着使用:
(let ((input (read)))
; do stuff here
)
的init.lisp文件中,但這只是不斷從keybord等待輸入,並且不會被加載文件讀取。任何幫助將非常感激!