From 79c96d1a7d954ae27ee2a999b8bab19580e30965 Mon Sep 17 00:00:00 2001 From: hamza Date: Thu, 4 Aug 2022 13:23:46 +0100 Subject: [PATCH] DEV-3385 docs(onlyf):add subject --- subjects/onlyf/README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 subjects/onlyf/README.md diff --git a/subjects/onlyf/README.md b/subjects/onlyf/README.md new file mode 100644 index 000000000..81f8a233e --- /dev/null +++ b/subjects/onlyf/README.md @@ -0,0 +1,16 @@ +## onlyf + +### Instructions + +Write a program that displays an `f` character on the standard output. (and nothing else) + +### Usage + +```console +$ go run . +a +$ go run . "a" "b" +a +$ go run . "a" "b" "c" +a +```