gpt4 book ai didi

LISP:在 Ubuntu 中运行程序

转载 作者:太空宇宙 更新时间:2023-11-03 18:57:48 25 4
gpt4 key购买 nike

我是 lisp 新手我已经在我的 ubuntu 14.04 机器和 SBCL 中安装了 Clisp。

我在 TextEditor 中的程序如下所示:

( hello world )

但我收到以下错误:

 user@user:~/Desktop/lisp$ ./test.lisp
./test.lisp: line 1: i: command not found

最佳答案

在 unix(如 Ubuntu)下使用 CLISP,您可以简单地在文件顶部添加一个 shebang #!/path/to/clisp在 Ubuntu 中是 #!/usr/bin/clisp它将代码作为脚本执行。

您需要该文件包含正确的 Common Lisp 文件,例如:

#!/usr/bin/clisp
(princ "Hello, world!")

并使用 chmod 755 <filename> 使文件可执行.除非您已将它放在 $PATH 中的目录之一中您需要输入它的路径。从文件目录简单地 ./<filename>就足够了。

关于LISP:在 Ubuntu 中运行程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32416135/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com