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