(ns cmdclock.core (:gen-class))
(defn -main []
(def sdf (java.text.SimpleDateFormat. "HH:mm:ss"))
(loop [text* ""]
(def text (.format sdf (java.util.Date.)))
(when (not= text text*) (println text))
(Thread/sleep 10)
(recur text)))
'My Computer Programs' 카테고리의 다른 글
LispScript (0) | 2015.04.30 |
---|---|
(C#) KOSPI200 GUI Ticker (0) | 2015.03.25 |
ss2 clock (0) | 2015.02.10 |
(C#) JoinLine (0) | 2015.02.10 |
(Windows, C#) SecondClock (0) | 2015.01.30 |