Objective
Write a program that takes a string and prints it after folding each lowercase letter to its alphabetical opposite, then a newline.
Steps
$ ./alpha_fold "hello"
svool
$ ./alpha_fold "Hello" | cat -e
Hvool$
$ ./alpha_fold "deploy on friday" | cat -e
wvkolb lm uirwzb$
$ ./alpha_fold | cat -e
wrong number of arguments$
Expected files
Allowed functions

Objective
Write a program that takes a string and prints it after folding each lowercase letter to its alphabetical opposite, then a newline.
Steps
$ ./alpha_fold "hello"
svool
$ ./alpha_fold "Hello" | cat -e
Hvool$
$ ./alpha_fold "deploy on friday" | cat -e
wvkolb lm uirwzb$
$ ./alpha_fold | cat -e
wrong number of arguments$
Expected files
Allowed functions

Tests
Run the tests to grade your code