Hello world of Clojure

建立目录及文件

mkdir -p sample/src
touch sample/src/core.clj
cd sample

在core.clj文件中写入代码

(ns core)

(defn -main []
    (println "Hello clojure 1.9!"))

执行程序

clj -m core

你可能感兴趣的:(Hello world of Clojure)