From 3b79283e0888a14030b10a57c5aceb417f87133b Mon Sep 17 00:00:00 2001 From: zainabdnaya Date: Thu, 16 Jun 2022 22:35:31 +0100 Subject: [PATCH] feat: Add Subject concat 2 arguments --- subjects/concat2argument/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/concat2argument/README.md b/subjects/concat2argument/README.md index 9f9161ca..7cf20df1 100644 --- a/subjects/concat2argument/README.md +++ b/subjects/concat2argument/README.md @@ -11,7 +11,7 @@ Write a program that concatenates two arguments and prints the result: ```console $ go run . | cat -e $ -$ go run . "Hello" " World!" | cat -e +$ go run . "Hello" "World!" | cat -e HelloWorld!$ $ go run . " student " talented | cat -e student talented$