私はClojureを初めて使用し、SOがここで私を助けてくれることを望んでいました:
;; a loop to collect data
(defn read-multiple []
(def inputs (list))
(loop [ins inputs]
(def input (read-val ">"))
(if (not= input "0")
(recur (conj ins input)))
(i-would-like-to-return-something-when-the-loop-terminates)))
入力を収集した後、これまでに収集されたすべての入力のリストを取得するにはどうすればよいですか?