Objective
Write a program that receives one text argument and prints it backward, followed by a newline.
Steps
$ ./reverse_print "deploy" | cat -e
yolped$
$ ./reverse_print "logs: 200" | cat -e
002 :sgol$
$ ./reverse_print | cat -e
wrong number of arguments$
Expected files
Allowed functions

Objective
Write a program that receives one text argument and prints it backward, followed by a newline.
Steps
$ ./reverse_print "deploy" | cat -e
yolped$
$ ./reverse_print "logs: 200" | cat -e
002 :sgol$
$ ./reverse_print | cat -e
wrong number of arguments$
Expected files
Allowed functions

Tests
Run the tests to grade your code