DEV-3387 docs(only1):add subject

This commit is contained in:
hamza 2022-08-04 13:46:19 +01:00 committed by José Rosendo
parent 816f05e228
commit 9c280eaff1
1 changed files with 16 additions and 0 deletions

16
subjects/only1/README.md Normal file
View File

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