Browse Source

docs: Add readme for subject concatenate

1271-concatenate
estlop 2 years ago
parent
commit
2369f2c82a
  1. 14
      subjects/concatenate/README.md

14
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$
```
Loading…
Cancel
Save