(defn boring [msg] (loop [i 0] (println msg i) (Thread/sleep (rand-int 1000)) (recur (inc i)))) (defn -main [& args] (boring "boring!")).
確定! 回上一頁