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 -```