From fee07c824910fab6ed3e4fe46fa53e66fe3b4167 Mon Sep 17 00:00:00 2001 From: jotapero Date: Wed, 19 Oct 2022 17:23:44 +0100 Subject: [PATCH] docs(displayS): fix subject console output --- subjects/displays/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/subjects/displays/README.md b/subjects/displays/README.md index 9dd68cef..397cd3f5 100644 --- a/subjects/displays/README.md +++ b/subjects/displays/README.md @@ -9,8 +9,11 @@ Write a program that displays an `S` character on the standard followed by newli ```console $ go run . | cat -e S$ +$ $ go run . "a" "b" | cat -e S$ +$ $ go run . "a" "b" "c" | cat -e S$ +$ ```