alguidelines/content/docs/BestPractices/binary-operator-line-start/index.md
2022-03-19 21:47:53 +01:00

427 B

title tags categories
Binary Operator to Start Line
AL
Readability
Best Practice

Created by Microsoft, Described by waldo

Description

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"