fork(1) download
  1. (defn demonstrate-rest [first & rest]
  2. (println first)
  3. (println rest))
  4.  
  5. (demonstrate-rest 1 "foo" ["bar" 22])
Success #stdin #stdout 1.7s 335488KB
stdin
Standard input is empty
stdout
1
(foo [bar 22])