9 lines
128 B
Clojure
9 lines
128 B
Clojure
|
|
(ns tasks)
|
||
|
|
|
||
|
|
(defn -main
|
||
|
|
"Usage: just pass some args.
|
||
|
|
|
||
|
|
This is the main main function in this namespace."
|
||
|
|
[& args]
|
||
|
|
args)
|