Unfortunately, I'm not that good at arc yet. How do you make a function that will take 0 or more arguments, instead of requiring at least one?
(def foo args (prn args)) (foo) => nil (foo 1) => (1) (foo 1 2) => (1 2)
-----