First pass conversion of NAV Patterns
This commit is contained in:
parent
1341938262
commit
6b32107a72
325 changed files with 11946 additions and 0 deletions
24
content/NAVPatterns/temporary-variable-naming/index.md
Normal file
24
content/NAVPatterns/temporary-variable-naming/index.md
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
+++
|
||||
title = "temporary-variable-naming.md"
|
||||
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