Compare commits

...

3 Commits

Author SHA1 Message Date
zainabdnaya 3b79283e08 feat: Add Subject concat 2 arguments 2 years ago
zainabdnaya 0747862ca0 feat: Add Subject concat 2 arguments 2 years ago
zainabdnaya d76739cbf1 feat: Add Subject 2 years ago
  1. 20
      subjects/concat2argument/README.md

20
subjects/concat2argument/README.md

@ -0,0 +1,20 @@
## Concat2Argument
### Instructions
Write a program that concatenates two arguments and prints the result:
- If the number of arguments is not 2, print (`'\n'`).
- don't concatenate the two arguments with space.
### Usage
```console
$ go run . | cat -e
$
$ go run . "Hello" "World!" | cat -e
HelloWorld!$
$ go run . " student " talented | cat -e
student talented$
$ go run . "Hello" "student" talented ! | cat -e
$
```
Loading…
Cancel
Save