-main
目標:として実行したときに実行されるClojure スクリプトを生成し./script.clj
ます。
私が得た最も近いのは
#!/bin/bash
#(comment
exec clj -m `basename $0 .clj` ${1+"$@"}
exit
#)
(defn -main [args]
(println args))
#| ... |#
しかし、Clojure では、複数行のコメント内に Lisp 以外のコードを入れることはできず、Clojure には Common Lisp の構文がありません。