Objective
Write a program that receives a single string argument and prints its first whitespace-delimited token, followed by a newline.
Steps
$ ./lead_token "ship it before standup" | cat -e
ship$
$ ./lead_token " typescript ate my tabs" | cat -e
typescript$
$ ./lead_token " " | cat -e
$
$ ./lead_token "no-space" | cat -e
no-space$
Expected files
Allowed functions

Objective
Write a program that receives a single string argument and prints its first whitespace-delimited token, followed by a newline.
Steps
$ ./lead_token "ship it before standup" | cat -e
ship$
$ ./lead_token " typescript ate my tabs" | cat -e
typescript$
$ ./lead_token " " | cat -e
$
$ ./lead_token "no-space" | cat -e
no-space$
Expected files
Allowed functions

Tests
Run the tests to grade your code