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

27 lines
427 B
Markdown

---
title: "Binary Operator to Start Line"
tags: ["AL","Readability"]
categories: ["Best Practice"]
---
_Created by Microsoft, Described by waldo_
## Description
Do not start a line with a binary operator.
## <span style="color:red">Bad code</span>
```AL
"Quantity to Ship" :=
Quantity
- "Quantity Shipped"
```
## <span style="color:lime">Good code</span>
```AL
"Quantity to Ship" :=
Quantity -
"Quantity Shipped"
```