#102
intoCamelCase
 

Difficulty:Medium
Topics:strings


When working with java, you often need to create an object with fieldsLikeThis, but you'd rather work with a hashmap that has :keys-like-this until it's time to convert. Write a function which takes lower-case hyphen-separated strings and converts them to camel-case strings.
test not run
(= (__ "something") "something")
test not run
(= (__ "multi-word-key") "multiWordKey")
test not run
(= (__ "leaveMeAlone") "leaveMeAlone")


Code which fills in the blank: