Arc Forumnew | comments | leaders | submitlogin
8 points by cchooper 5782 days ago | link | parent

Like this:

  (def foo args
    (prn args))

  (foo)
  => nil

  (foo 1)
  => (1)

  (foo 1 2)
  => (1 2)