##
if ($SomeTest)
{# Brief opening comment to describe this block
...
}
elsif ($AnotherTest)
{# Brief comment for this block
...
}
else
{# Ditto
...
}
...
####
if ($SomeTest) {
# Brief opening comment to describe this block
...
}
elsif ($AnotherTest) {
# Brief comment for this block
...
} else {
# Ditto
...
}
...