Difference between revisions of "Coding Conventions"
Jump to navigation
Jump to search
(Created page with '== Function Names == A function name * describes what the function does * starts with a verb * starts lowercase <syntaxhighlight lang="vb"> sub reportDifference() </syntaxhighli...') |
|||
Line 6: | Line 6: | ||
<syntaxhighlight lang="vb"> | <syntaxhighlight lang="vb"> | ||
− | + | Sub reportDifference() | |
+ | '... | ||
+ | End Sub | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== Blank lines == | == Blank lines == |
Revision as of 10:52, 19 April 2010
Function Names
A function name
- describes what the function does
- starts with a verb
- starts lowercase
Sub reportDifference()
'...
End Sub