Coding Conventions

From vb24
Jump to navigation Jump to search

Function Names

A function name

  • describes what the function does
  • starts with a verb
  • starts lowercase
Sub reportDifference()
    '...
End Sub

Blank lines