From de6cfddda6018a4c23107eb19be6a0925b0f4a21 Mon Sep 17 00:00:00 2001 From: hamza Date: Thu, 4 Aug 2022 21:16:55 +0100 Subject: [PATCH] DEV-3389 rename the dir and title --- subjects/displays/README.md | 16 ++++++++++++++++ subjects/onlys/README.md | 16 ---------------- 2 files changed, 16 insertions(+), 16 deletions(-) create mode 100644 subjects/displays/README.md delete mode 100644 subjects/onlys/README.md diff --git a/subjects/displays/README.md b/subjects/displays/README.md new file mode 100644 index 00000000..149d3ee5 --- /dev/null +++ b/subjects/displays/README.md @@ -0,0 +1,16 @@ +## displays + +### Instructions + +Write a program that displays an `S` character on the standard folowed by newlines (`'\n'`) + +### Usage + +```console +$ go run . | cat -e +S$ +$ go run . "a" "b" | cat -e +S$ +$ go run . "a" "b" "c" | cat -e +S$ +``` diff --git a/subjects/onlys/README.md b/subjects/onlys/README.md deleted file mode 100644 index 3c42605c..00000000 --- a/subjects/onlys/README.md +++ /dev/null @@ -1,16 +0,0 @@ -## onlys - -### Instructions - -Write a program that displays an `S` character on the standard output. (and nothing else) - -### Usage - -```console -$ go run . -S -$ go run . "a" "b" -S -$ go run . "a" "b" "c" -S -```