Write a Julia program to convert string to camelcase
Camelcase is a style of writing in which the first letter of each word is capitalized except the first word.
Input : "hello world"
Output : "helloWorld"
How to contribute
- Save the solution in `program/convert-string-to-camelcase.jl` file
- Add `convert-string-to-camelcase.jl` file in `convert-string-to-camelcase` folder
Description
Write a Julia program to convert string to camelcase
Camelcase is a style of writing in which the first letter of each word is capitalized except the first word.
How to contribute
- Save the solution in `program/convert-string-to-camelcase.jl` file - Add `convert-string-to-camelcase.jl` file in `convert-string-to-camelcase` folder