通用 Lisp。
我正在尝试确定给定列表中是否存在字符串。
我的目标是拥有, (member searched-string my-list) 但我不断得到NIL。
(member searched-string my-list)
NIL
为什么(member "foo" '("foo" "bar"))返回NIL?
(member "foo" '("foo" "bar"))
lisp common-lisp
common-lisp ×1
lisp ×1