From 189ad964c3f502101f4694ce513c62bff36b4567 Mon Sep 17 00:00:00 2001 From: jotapero Date: Wed, 19 Oct 2022 17:31:33 +0100 Subject: [PATCH] docs(displayP): created new subject - subject for this exercise was missing docs(displayP): fix name - fixed folder name / exercise name docs(displayP): removed wrong folder docs(displayP): fix subject grammar - fixed grammar docs(displayp): ran prettier format --- subjects/displayp/README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 subjects/displayp/README.md diff --git a/subjects/displayp/README.md b/subjects/displayp/README.md new file mode 100644 index 00000000..5031f898 --- /dev/null +++ b/subjects/displayp/README.md @@ -0,0 +1,19 @@ +## displayp + +### Instructions + +Write a program that displays a character `P` followed by a newline `\n`. + +### Usage + +```console +$ go run . | cat -e +P$ +$ +$ go run . "a" "b" | cat -e +P$ +$ +$ go run . "a" "b" "c" | cat -e +P$ +$ +```