diff --git a/subjects/concatenate/README.md b/subjects/concatenate/README.md new file mode 100644 index 00000000..3246fa60 --- /dev/null +++ b/subjects/concatenate/README.md @@ -0,0 +1,14 @@ +## concatenate + +### Instructions + +Write a program that displays all the arguments as a single string. If there are not enough arguments it should display a new line. + +### Usage + +```console +$ go run . hello there chris | cat -e +hellotherechris$ +$ go run . a b c d| cat -e +abcd$ +```