Reorganizing
This commit is contained in:
parent
a4f6467d78
commit
f4886ee235
326 changed files with 4 additions and 0 deletions
|
|
@ -0,0 +1,26 @@
|
|||
+++
|
||||
title = "Spacing Unary Operators"
|
||||
weight = 1140
|
||||
+++
|
||||
There must be no space between a unary operator and its argument (except for the NOT keyword).
|
||||
Bad code
|
||||
|
||||
IF NOT(Type = Type::Item) THEN
|
||||
|
||||
|
||||
|
||||
Good code
|
||||
|
||||
IF NOT (Type = Type::Item) THEN
|
||||
|
||||
|
||||
|
||||
Bad code
|
||||
|
||||
DiscAmt := - "Discount Amount";
|
||||
|
||||
|
||||
|
||||
Good code
|
||||
|
||||
DiscAmt := -"Discount Amount";
|
||||
Loading…
Add table
Add a link
Reference in a new issue