alguidelines/content/NAVPatterns/3-cal-coding-guidelines/readability/lonely-repeat/index.md
2021-10-30 22:09:32 +02:00

15 lines
218 B
Markdown

+++
title = "Lonely Repeat"
weight = 760
+++
The REPEAT statement should always be alone on a line.
Bad code
IF ReservEntry.FINDSET THEN REPEAT
Good code
IF ReservEntry.FINDSET THEN
REPEAT