## displaylastparam ### Instructions Write a program that displays its last argument, if there is one. ### Usage ```console student@ubuntu:~/displaylastparam/test$ go build student@ubuntu:~/displaylastparam/test$ ./test hello there there student@ubuntu:~/displaylastparam/test$ ./test "hello there" how are you you student@ubuntu:~/displaylastparam/test$ ./test "hello there" hello there student@ubuntu:~/displaylastparam/test$ ./test student@ubuntu:~/displaylastparam/test$ ```