Version
CA025 - Use semicolons
Description
Routine arguments should be separated with semicolons. Although this is optional, it is not a recommended style to not put semicolons.
Scope feature Status Enabled Severity Suggestion Applicability All Score 40
Example of violation
f (a: INTEGER b: INTEGER) do end
Recommendation
Add the missing semicolons between arguments. In the example, it becomes:
f (a: INTEGER; b: INTEGER) do end
Back to Rules