-1
我正在使用LISP並想知道如何在字符串列表中訪問成員。我已經嘗試了成員函數,但一直得到NIL。 感謝字符串列表上的lisp成員函數
(setq phrase-list '("What color is the sky?" "It is Blue.")) ;list of strings
(write phrase-list)
(terpri)
(setq x(read-line)) ; I try to input What color is the sky?
(write(member x phrase-list)) ; I keep getting NIL
爲什麼有關'lisp'標記的'scheme'的問題? –
您是否驗證了綁定到'x'的字符串? –
對不起,我還應該刪除common-lisp標籤。我有點困惑。 –