diff --git a/subjects/onlyb/README.md b/subjects/onlyb/README.md new file mode 100644 index 000000000..3126577b3 --- /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 +```