docs: Add readme for subject concatenate

This commit is contained in:
estlop 2022-06-29 11:49:23 +01:00 committed by Dav Hojt
parent 20b24a334a
commit f8b2b6aed0
1 changed files with 14 additions and 0 deletions

View File

@ -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$
```