(ns clojure.examples.hello
(:gen-class))
(defn Example []
(def my-vector [1 2 3 4])
(let [[a b c d e] my-vector]
(println a b c d e)))
(Example)
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/265687.html
(ns clojure.examples.hello
(:gen-class))
(defn Example []
(def my-vector [1 2 3 4])
(let [[a b c d e] my-vector]
(println a b c d e)))
(Example)
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/265687.html