gpt4 book ai didi

compilation - 未调用的变量

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

<分区>

我正在尝试开始使用 Lisp,我有一些(困惑的)代码,我希望能够向用户询问标题和 url。

将它们保存在一个变量中,然后在调用时将它们打印出来。不过我遇到了麻烦。首先,我不知道如何编译我的程序来运行它。另外,有一次当我运行它时,我得到了一个关于变量标题未被调用的错误。谁能帮我解决这两件事?抱歉,我无法为您提供有关该错误的更多信息。

;;Define a function called make-cd that takes four parameters
(defun make-url( title url ))
(list :title title :url url)

;;In the make-url function create a plist that takes the passed values


;; Define global variable db and set its value to nil
(defvar *db* nil)

;; Define a function that takes one paramter and pushes it to the make-url func.
;;(defun add-url (url) (push url *db*))

;; Define a function that takes the *db* variable and makes the output pretty
(defun dump-db ()
(dolist (url *db*)
(format t "~{~a:~10t~a~%~}~%" url)))

(defun prompt-read (prompt)
(format *query-io* "~a: " prompt)
(force-output *query-io*)
(read-line *query-io*))

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