Name unused argument idiomatically

This commit is contained in:
Lee Spector 2021-07-22 16:14:24 -04:00
parent 995ed3b47d
commit 2572c706a8

View File

@ -3,7 +3,7 @@
(defn -main (defn -main
"Not intended to be run; just print a message." "Not intended to be run; just print a message."
[& args] [& _]
;; Exception for when no args were passed ;; Exception for when no args were passed
(println "To run a genetic programming problem, provide a the problem's") (println "To run a genetic programming problem, provide a the problem's")
(println "namespace as specified in the Propeller README file at") (println "namespace as specified in the Propeller README file at")