Reorganizing
This commit is contained in:
parent
a4f6467d78
commit
f4886ee235
326 changed files with 4 additions and 0 deletions
|
|
@ -0,0 +1,24 @@
|
|||
+++
|
||||
title = "Temporary Variable Naming"
|
||||
weight = 1200
|
||||
+++
|
||||
The name of a temporary variable must be prefixed with the word Temp and not otherwise. Bad code
|
||||
|
||||
JobWIPBuffer@1002 : TEMPORARY Record 1018;
|
||||
|
||||
|
||||
|
||||
Good code
|
||||
|
||||
TempJobWIPBuffer@1002 : TEMPORARY Record 1018;
|
||||
|
||||
|
||||
Bad code
|
||||
|
||||
TempJobWIPBuffer@1002 : Record 1018;
|
||||
|
||||
|
||||
|
||||
Good code
|
||||
|
||||
CopyOfJobWIPBuffer@1002 : Record 1018;
|
||||
Loading…
Add table
Add a link
Reference in a new issue