To: Bill Buckels
On Sat, 20 Sep 2008 05:23:04 -0500, Bill Buckels wrote:
The Mind plays its own strange tricks when writing in BASIC (as well as any
programming language:) Regardless, combining multiple statements on the same
line degrades the readability of any program regardless of language.
Sometimes readability isn't important. Sometime executable size and
speed is more important.
Back in the '80's when I moved away from BASIC with line numbers to compiled
BASIC with sub-routines and functions, it had long become my personal
preference to avoid using semi-colons because I absolutely hated needing to
decipher one-liners.
BASIC programmers use colons. C programmers were the ones with all the
semi-colons. At least in BASIC, colons are optional but in C they are
required at the end of almost every command. :-)
Deciphering one-liners is easy seeing as there is no branching at all.
It is simply one command executed after another.