Objective
Write a program that reads one camelCase identifier from the command line and prints it reformatted as snake_case.
Steps
$ ./snake_fmt "buildReactApp"
build_react_app
$ ./snake_fmt "vibeCodingMetGccToday" | cat -e
vibe_coding_met_gcc_today$
$ ./snake_fmt | cat -e
wrong number of arguments$
Expected files
Allowed functions

Objective
Write a program that reads one camelCase identifier from the command line and prints it reformatted as snake_case.
Steps
$ ./snake_fmt "buildReactApp"
build_react_app
$ ./snake_fmt "vibeCodingMetGccToday" | cat -e
vibe_coding_met_gcc_today$
$ ./snake_fmt | cat -e
wrong number of arguments$
Expected files
Allowed functions

Tests
Run the tests to grade your code