Objective
Write a program that receives exactly one string argument and prints its last word followed by a newline.
Steps
$ ./final_token "llm says works on my branch" | cat -e
branch$
$ ./final_token "rebase squash push" | cat -e
push$
$ ./final_token " " | cat -e
$
Expected files
Allowed functions

Objective
Write a program that receives exactly one string argument and prints its last word followed by a newline.
Steps
$ ./final_token "llm says works on my branch" | cat -e
branch$
$ ./final_token "rebase squash push" | cat -e
push$
$ ./final_token " " | cat -e
$
Expected files
Allowed functions

Tests
Run the tests to grade your code