From 9c280eaff1884e276c2720b029a505b0e5e6d55d Mon Sep 17 00:00:00 2001 From: hamza Date: Thu, 4 Aug 2022 13:46:19 +0100 Subject: [PATCH] DEV-3387 docs(only1):add subject --- subjects/only1/README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 subjects/only1/README.md diff --git a/subjects/only1/README.md b/subjects/only1/README.md new file mode 100644 index 00000000..957661b5 --- /dev/null +++ b/subjects/only1/README.md @@ -0,0 +1,16 @@ +## only-1 + +### Instructions + +Write a program that displays a `1` character on the standard output. (and nothing else) + +### Usage + +```console +$ go run . +1 +$ go run . "a" "b" +1 +$ go run . "a" "b" "c" +1 +```