alguidelines/content/NAVPatterns/binary-operator-line-start/index.md
2021-10-30 20:44:07 +02:00

256 B

+++ title = "Binary Operator to Start Line" weight = 250 +++ Do not start a line with a binary operator. Bad code

"Quantity to Ship" :=
Quantity 
- "Quantity Shipped"

Good code

"Quantity to Ship" :=
Quantity -
"Quantity Shipped"