211 B
211 B
+++ title = "Unnecessary Separators" weight = 1290 +++ There should be no unnecessary separators.
Bad code
IF Customer.FINDFIRST THEN;;
Good code
IF Customer.FINDFIRST THEN;
+++ title = "Unnecessary Separators" weight = 1290 +++ There should be no unnecessary separators.
Bad code
IF Customer.FINDFIRST THEN;;
Good code
IF Customer.FINDFIRST THEN;