Какой из двух вариантов управляющих конструкций вам нравится больше и почему? Сопоставьте как с известными вам различными императивными языками, так и собственными представлениями о гармоничности.
ПЕРВЫЙ:
// циклы с предусловием:
while condition do
    statements
end:while
until condition do
    statements
end:until
// циклы с постусловием:
do
    statements
repeat while condition;
do
    statements
repeat until condition;
// вечный цикл:
do
    statements
repeat forever;
// простой блок кода:
block
    statements
end:block
ВТОРОЙ:
// циклы с предусловием:
while condition loop
    statements
end:while
until condition loop
    statements
end:until
// циклы с постусловием:
loop
    statements
repeat while condition;
loop
    statements
repeat until condition;
// вечный цикл:
loop
    statements
repeat forever;
// простой блок кода:
do
    statements
end:do








