From 00e8903bc1d3930172cecec5c705008b3101a7c0 Mon Sep 17 00:00:00 2001 From: hamza Date: Thu, 4 Aug 2022 21:06:49 +0100 Subject: [PATCH] DEV-3389 docs(onlys):add subject --- subjects/onlys/README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 subjects/onlys/README.md diff --git a/subjects/onlys/README.md b/subjects/onlys/README.md new file mode 100644 index 00000000..3c42605c --- /dev/null +++ b/subjects/onlys/README.md @@ -0,0 +1,16 @@ +## 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 +```