(ns blog-example) (def chat-history (atom [])) (defn print-chat-messages [] (doseq [m (take-last 10 @chat-history)] (println m))) (defn ...
確定! 回上一頁