Add bang operator to gdscript style guide (#6828)

This commit is contained in:
Thiago Lages de Alencar
2023-02-27 07:19:38 +01:00
committed by GitHub
parent a1d34889d1
commit 6095b20174
@@ -414,6 +414,7 @@ Prefer the plain English versions of boolean operators, as they are the most acc
- Use ``and`` instead of ``&&``.
- Use ``or`` instead of ``||``.
- Use ``not`` instead of ``!``.
You may also use parentheses around boolean operators to clear any ambiguity.
This can make long expressions easier to read.