279 B
279 B
+++ title = "case-actions.md" weight = 310 +++ 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';