fork(1) download
  1. (defn test [x y z]
  2. (->> [x y z]
  3. (sort)
  4. (drop 1)
  5. (map #(* % %))
  6. (reduce +)))
  7.  
  8. (println (test 2 1 4))
Success #stdin #stdout #stderr 1.69s 335488KB
stdin
Standard input is empty
stdout
20
stderr
WARNING: test already refers to: #'clojure.core/test in namespace: user, being replaced by: #'user/test