fixed bool chart

This commit is contained in:
katiesavage 2022-04-29 16:45:10 -07:00
parent b9708c29f5
commit 2893f50386

View file

@ -83,14 +83,14 @@ In this example, we use parentheses pass a string as a parameter to *Console.Wri
## Boolean expressions
We use booleans to compare two or more things.
| symbol | what it does |
| --- | ------ |
| < | less than |
| > | greater than |
| <= | less than or equal |
| >= | greater than or equal |
| == | equal |
| != | not equal |
| symbol | what it does |
| --- | ---------- |
| < | less than |
| > | greater than |
| <= | less than or equal |
| >= | greater than or equal |
| == | equal |
| != | not equal |
---