You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/projects/ascii_art.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,12 +98,13 @@ And here it is with a height of `1`
98
98
|
99
99
```
100
100
101
-
You want to make sure that if the person using your program gives you a negative number, zero, or something that is
102
-
not a number you don't just crash. This means you might need to reprompt them for information.
101
+
103
102
104
103
105
104
## Future Goals
106
105
106
+
When you learn enough to do the following, come back to this project and expand it.
107
+
107
108
* Draw something with more varied parts, like a snowman. You might find it convenient to not directly print to the screen, but instead "draw" what you want to print into an array first then print the contents of that array.
108
109
109
110
```
@@ -128,7 +129,8 @@ not a number you don't just crash. This means you might need to reprompt them fo
128
129
| |
129
130
\---------/
130
131
```
131
-
132
+
* Make sure that if the person using your program gives you a negative number, zero, or something that is
133
+
not a number you don't just crash. This means you might need to reprompt them for information.
132
134
* Make the christmas tree prettier. This will require "finding the pattern" in a more interesting piece of art, like [this example](https://www.asciiart.eu/holiday-and-events/christmas/trees).
0 commit comments