Update info.md

This commit is contained in:
JezuzLizard 2020-05-19 02:08:47 -07:00 committed by GitHub
parent 9b3ed18f75
commit 2a63ea0438
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,3 +43,9 @@ In the case of
if ( ( a || b ) && ( c || d ) )
WILL COMPILE
```
**You cannot set variables equal to a condition**
EXAMPLE:
```a = b && c;```
WILL NOT COMPILE
```