docs(ascii-art-optionals): clarify subjects

- Specify the behavior for programs with multiple optional projects
implemented to avoid doubts during audits
- Add clarification on default behaviour - program with only [STRING]
argument
This commit is contained in:
nprimo 2022-10-13 12:20:41 +01:00 committed by Niccolò Primo
parent 361430938f
commit b4fa7403d3
5 changed files with 15 additions and 0 deletions

View File

@ -16,6 +16,9 @@ Usage: go run . [STRING] [OPTION]
EX: go run . something --color=<color>
```
If there are other `ascii-art` optional projects implemented, the program should accept other correctly formatted `[OPTION]` and/or `[BANNER]`.
Additionally, the program must still be able to run with a single `[STRING]` argument.
### Instructions
- Your project must be written in **Go**.

View File

@ -18,6 +18,9 @@ Usage: go run . [STRING] [BANNER]
EX: go run . something standard
```
If there are other `ascii-art` optional projects implemented, the program should accept other correctly formatted `[OPTION]` and/or `[BANNER]`.
Additionally, the program must still be able to run with a single `[STRING]` argument.
### Usage
```console

View File

@ -27,6 +27,9 @@ Usage: go run . [STRING] [BANNER] [OPTION]
Example: go run . something standard --align=right
```
If there are other `ascii-art` optional projects implemented, the program should accept other correctly formatted `[OPTION]` and/or `[BANNER]`.
Additionally, the program must still be able to run with a single `[STRING]` argument.
### Instructions
- Your project must be written in **Go**.

View File

@ -14,6 +14,9 @@ Usage: go run . [STRING] [BANNER] [OPTION]
EX: go run . something standard --output=<fileName.txt>
```
If there are other `ascii-art` optional projects implemented, the program should accept other correctly formatted `[OPTION]` and/or `[BANNER]`.
Additionally, the program must still be able to run with a single `[STRING]` argument.
### Instructions
- Your project must be written in **Go**.

View File

@ -16,6 +16,9 @@ Usage: go run . [OPTION]
EX: go run . --reverse=<fileName>
```
If there are other `ascii-art` optional projects implemented, the program should accept other correctly formatted `[OPTION]` and/or `[BANNER]`.
Additionally, the program must still be able to run with a single `[STRING]` argument.
### Instructions
- Your project must be written in **Go**.