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