Naming conventions

Parameters

The following rules apply for parameters:

  • Within one function, parameters with identical names shall be of the same data type and have an identical structure.
  • Parameter names shall contain no characters other than letters, numbers, and underscores.
  • Parameter names shall not start with a number.

Functions

The following rules apply for functions:

  • Function names shall not start with a number.
  • Function names shall contain no characters other than letters, numbers, and underscores.