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 ## Boolean expressions
We use booleans to compare two or more things. We use booleans to compare two or more things.
| symbol | what it does | | symbol | what it does |
| --- | ------ | | --- | ---------- |
| < | less than | | < | less than |
| > | greater than | | > | greater than |
| <= | less than or equal | | <= | less than or equal |
| >= | greater than or equal | | >= | greater than or equal |
| == | equal | | == | equal |
| != | not equal | | != | not equal |
--- ---