Skip to content

Commit

Permalink
docs(ascii-art): improve readmes
Browse files Browse the repository at this point in the history
  • Loading branch information
MSilva95 committed Jun 19, 2024
1 parent 07e39a6 commit 5ff35e3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
6 changes: 3 additions & 3 deletions subjects/ascii-art/fs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Additionally, the program must still be able to run with a single `[STRING]` arg
### Usage

```console
$ go run . "hello" standard | cat -e
student$ go run . "hello" standard | cat -e
_ _ _ $
| | | | | | $
| |__ ___ | | | | ___ $
Expand All @@ -33,7 +33,7 @@ $ go run . "hello" standard | cat -e
|_| |_| \___| |_| |_| \___/ $
$
$
$ go run . "Hello There!" shadow | cat -e
student$ go run . "Hello There!" shadow | cat -e
$
_| _| _| _| _|_|_|_|_| _| _| $
_| _| _|_| _| _| _|_| _| _|_|_| _|_| _| _|_| _|_| _| $
Expand All @@ -42,7 +42,7 @@ _| _| _| _| _| _| _| _| _| _| _| _| _|
_| _| _|_|_| _| _| _|_| _| _| _| _|_|_| _| _|_|_| _| $
$
$
$ go run . "Hello There!" thinkertoy | cat -e
student$ go run . "Hello There!" thinkertoy | cat -e
$
o o o o o-O-o o o $
| | | | | | | $
Expand Down
13 changes: 6 additions & 7 deletions subjects/ascii-art/output/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Usage: go run . [OPTION] [STRING] [BANNER]
EX: go run . --output=<fileName.txt> something standard
```

If there are other `ascii-art` optional projects implemented, the program should accept other correctly formatted `[OPTION]` and/or `[BANNER]`.
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
Expand All @@ -26,8 +26,8 @@ Additionally, the program must still be able to run with a single `[STRING]` arg
### Usage

```console
$ go run . --output=banner.txt "hello" standard
$ cat -e banner.txt
student$ go run . --output=banner.txt "hello" standard
student$ cat -e banner.txt
_ _ _ $
| | | | | | $
| |__ ___ | | | | ___ $
Expand All @@ -36,9 +36,8 @@ $ cat -e banner.txt
|_| |_| \___| |_| |_| \___/ $
$
$
$
$ go run . --output=banner.txt 'Hello There!' shadow
$ cat -e banner.txt
student$ go run . --output=banner.txt 'Hello There!' shadow
student$ cat -e banner.txt
$
_| _| _| _| _|_|_|_|_| _| _| $
_| _| _|_| _| _| _|_| _| _|_|_| _|_| _| _|_| _|_| _| $
Expand All @@ -47,7 +46,7 @@ _| _| _| _| _| _| _| _| _| _| _| _| _|
_| _| _|_|_| _| _| _|_| _| _| _| _|_|_| _| _|_|_| _| $
$
$
$
student$
```

### Allowed packages
Expand Down

0 comments on commit 5ff35e3

Please sign in to comment.