I'm wondering if there should be a convention for two other kinds of cases:
(when something do-something)
versus
(when something
do-something)
or, as another case to be discussed separately:
versus
One might want to do that to save on lines when the condition and the body are short enough.
Should it be allowed, recommended, to avoid, forbidden, up to the writer ?
I'm wondering if there should be a convention for two other kinds of cases:
(when something do-something)versus
(when something do-something)or, as another case to be discussed separately:
(if foo bar baz)versus
(if foo bar baz)One might want to do that to save on lines when the condition and the body are short enough.
Should it be allowed, recommended, to avoid, forbidden, up to the writer ?