On Wed, 30 Mar 2016 21:40:39 +0000, Fons Adriaensen wrote:
AFAIK, placing a { at the end of a line is something
from
the times when each byte would cost half a dollar.
But I can live with that.
It makes code better readable that needs to be understood in a context
of code, to avoid scrolling up/down when reading from the screen or to
avoid turn over pages when reading from printed code.
The problematic resource isn't the cost of byte, it's the available
space of the screen and the space of paper, interacting with the
smallest readable font.
bla { 1 bla
foo 2 {
oops { 3 foo
ok 4 oops
} 5 {
} 6 ok
7 }
8 }