//
(ns clojure.examples.hello
(:gen-class))
(defn hello-world []
(println (format "Hello , %s" "World"))
(println (format "Pad with leading zeros %06d" 1234)))
(hello-world)
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/265596.html
//
(ns clojure.examples.hello
(:gen-class))
(defn hello-world []
(println (format "Hello , %s" "World"))
(println (format "Pad with leading zeros %06d" 1234)))
(hello-world)
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/265596.html