#PrettyPrint.c
09-Jan-88 23:40:05
Sb: #102409-#PrettyPrint.c
Fm: Don Curtis/SYSOP 76703,4321
To: John Draper 76703,4322
Larry,
Humm….the way I read it (and I'll go back…I'm using a different
term program now) while the if statement was indented from the 'main()'
statement, the statements that got executed if the 'if' was true were not
indented from the 'if' as I displayed in my message (I hope…I'll check it
also).
The way I saw Rick's example:
if (…)
{
do_this();
and_this();
}
My message was expressing that I would have hoped he meant:
if (…)
{
do_this();
and_this();
}
If he did mean the first example above (and that's the way you read it
also and feel it's correctly indented)…then I felt that that particular style
wasn't very readable for me…but if it's readable for you or him…then so be
it.
Don