alguidelines/content/NAVPatterns/3-cal-coding-guidelines/readability/binary-operator-line-start/index.md
2022-02-05 19:44:44 +01:00

21 lines
269 B
Markdown

+++
title = "Binary Operator to Start Line"
weight = 250
+++
Do not start a line with a binary operator.
Bad code
```al
"Quantity to Ship" :=
Quantity
- "Quantity Shipped"
```
Good code
```al
"Quantity to Ship" :=
Quantity -
"Quantity Shipped"
```