Keyword Pairs - Indentation
Categories:
Created by Microsoft, Described by waldo
Description
The if..then
pair, while..do
pair, and for..do
pair must appear on the same line or the same level of indentation. If possible, you can align the lines it is even much more readable.
Bad code
if (x = y) and
(a = b) then
Good code
if (x = y) and
(a = b)
then
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.
Last modified October 4, 2024: Merge pull request #249 from Busschers/ErrorHandling-ListOfReferenceText (5e76983)
by Arend-Jan Kauffmann