Objective
Write a program that displays the final command-line argument followed by a newline.
Steps
$ ./last_arg deploy rollback hotfix
hotfix
$ ./last_arg ship-it
ship-it
$ ./last_arg
wrong number of arguments
Expected files
Allowed functions

Objective
Write a program that displays the final command-line argument followed by a newline.
Steps
$ ./last_arg deploy rollback hotfix
hotfix
$ ./last_arg ship-it
ship-it
$ ./last_arg
wrong number of arguments
Expected files
Allowed functions

Tests
Run the tests to grade your code