编辑代码





(defn hello [a b c &d] (print a b c &d))
;可变参数 怎么弄? 这里超过 四个参数就会出错 

( hello '(hello)  'b 'c 'd  ) 

 
( hello '( world) 1 2 3  )