fork download
  1. (defprotocol Lowerable
  2. (lower [x]))
  3.  
  4. (extend-protocol Lowerable
  5. String
  6. (lower [s]
  7. (.toLowerCase s)))
  8.  
  9. (println (lower "HELLO"))
  10.  
Success #stdin #stdout 1.11s 220288KB
stdin
Standard input is empty
stdout
hello