Objective
Write a program that reads a single identifier from the command line and prints it in lowerCamelCase.
Steps
$ ./camel_fmt "deploy_on_friday"
deployOnFriday
$ ./camel_fmt "get_user_name" | cat -e
getUserName$
$ ./camel_fmt | cat -e
wrong number of arguments$
Expected files
Allowed functions
Allowed headers

Objective
Write a program that reads a single identifier from the command line and prints it in lowerCamelCase.
Steps
$ ./camel_fmt "deploy_on_friday"
deployOnFriday
$ ./camel_fmt "get_user_name" | cat -e
getUserName$
$ ./camel_fmt | cat -e
wrong number of arguments$
Expected files
Allowed functions
Allowed headers

Tests
Run the tests to grade your code