Routine Layout and Structure
Apply these formatting rules to improve routine readability and maintainability.
Routine Parameter Layout
When to apply: When routine parameters cannot fit on a single line
- Use standard indentation for multi-line parameter lists
- Place each parameter on a new line
- Vertically align parameters using standard indentation
Avoid "Endline Layout":
- Endline layout attempts to align parameters to the right edge
- High maintenance cost: changing function name length requires reformatting all parameter lines
- Can cause right-side space limitations
Advantages of standard indentation:
- Better accuracy, consistency, readability, and maintainability
- Function name changes don't affect parameter layout
- Adding or removing parameters requires modifying only one line
Routine Internal Structure
When to apply: When writing routine implementations with declarations and executable code
Use blank lines to separate logical parts of the routine:
- After the routine header
- Around data declarations and named constant declarations (if present)
- Before the routine body
Purpose: Clearly delineate the logical components (header, declarations, body) of the routine.
Result
- Parameter lists are clear and easy to maintain
- Routine structure is visually organized with clear section boundaries
- Code modifications don't cascade formatting changes
