Camel Case
[email protected] // 1.0 // type-checkable
Camel case is a way of writing phrases without spaces:
turn the first character of each word except the first to uppercase.
For example, "this is a test" is written as "thisIsATest" in camel case.
Write a function named camel_case
that takes a phrase and return its camel case version.
You may assume that the string contains only lowercase letters and spaces.