Browse Source

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
DEV-3202-new-go-exercicse-be-zero-fix
nprimo 2 years ago committed by Niccolò Primo
parent
commit
b4fa7403d3
  1. 3
      subjects/ascii-art/color/README.md
  2. 3
      subjects/ascii-art/fs/README.md
  3. 3
      subjects/ascii-art/justify/README.md
  4. 3
      subjects/ascii-art/output/README.md
  5. 3
      subjects/ascii-art/reverse/README.md

3
subjects/ascii-art/color/README.md

@ -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**.

3
subjects/ascii-art/fs/README.md

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

3
subjects/ascii-art/justify/README.md

@ -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**.

3
subjects/ascii-art/output/README.md

@ -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**.

3
subjects/ascii-art/reverse/README.md

@ -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**.

Loading…
Cancel
Save