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 +```