fork download
  1. (defn add-five [x] (+ 5 x))
  2.  
  3. (println (add-five (read-string "11")))
  4. (println (read-string "11"))
Success #stdin #stdout 1.5s 389120KB
stdin
Standard input is empty
stdout
16
11