Objective
Write a program named rot_13 that shifts each letter in its argument by 13 positions in the alphabet, wrapping around at the ends.
Steps
$ ./rot_13 "Hello"
Uryyb
$ ./rot_13 "git blame reveals all" | cat -e
tvg oynzr erirnyf nyy$
$ ./rot_13 | cat -e
wrong number of arguments$
Expected files
Allowed functions

Objective
Write a program named rot_13 that shifts each letter in its argument by 13 positions in the alphabet, wrapping around at the ends.
Steps
$ ./rot_13 "Hello"
Uryyb
$ ./rot_13 "git blame reveals all" | cat -e
tvg oynzr erirnyf nyy$
$ ./rot_13 | cat -e
wrong number of arguments$
Expected files
Allowed functions

Tests
Run the tests to grade your code