Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
REPL でシーケンスをいじってみたところ、少なくとも私にとってはかなり直感的でない次の動作に遭遇しました。(cons '("1" "2") "3")そのため、式が生成されることを期待して評価し(("1" "2") "3")ましたが、代わりに生成されました(("1" "2") \3)。
(cons '("1" "2") "3")
(("1" "2") "3")
(("1" "2") \3)
この場合、Clojure が自動的に強制する理由を誰か説明できstringますか? characterこれは、一連の文字列としての文字列の内部表現と関係があると思います。
string
character