fork download
  1. (defn task1 [s]
  2. (sort (clojure.string/split s #"\W+")))
  3.  
  4. (println (task1 "hello, world! And good-bye..."))
Success #stdin #stdout 0.96s 4386816KB
stdin
Standard input is empty
stdout
(And bye good hello world)