Spacing Binary Operators
Categories:
Created by Microsoft, Described by waldo
Description
There must be exactly one space character on each side of a binary operator such as = + - AND OR =. The parameter comma operator however, should have a space after the comma.
Example 1
Bad code
"Line Discount %" := "Line Discount Amount"/"Line Value"*100;
Good code
"Line Discount %" := "Line Discount Amount" / "Line Value" * 100;
Example 2
Bad code
StartDate := CalcDate('<+'+Format(Days+i)+'D\>',StartDate);
Good code
StartDate := CalcDate('<+' + Format(Days + i) + 'D\>', StartDate);
Example 3
Bad code
StartDate:=0D; // Initialize
Good code
StartDate := 0D; // Initialize
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.
Last modified October 4, 2024: Merge pull request #249 from Busschers/ErrorHandling-ListOfReferenceText (5e76983)
by Arend-Jan Kauffmann