CASE Action

A CASE action should start on a line after the possibility.

Bad code

CASE Letter OF
    'A': Letter2 := '10';
    'B': Letter2 := '11';

Good code

CASE Letter OF
    'A':
        Letter2 := '10';
    'B':
        Letter2 := '11';
Last modified February 20, 2022: Restructure for Docsy theme (cceb0c94)