to those reely, reely familiar with PBASIC
davejames
Posts: 4,047
Is there any advantage (any at all) in combining PBASIC statements on the same line versus separating them on individual lines?
...versus...
Thanks much.
<statement1> : <statement2> : <statement3>
...versus...
<statement1> <statement2> <statement3>
Thanks much.
Comments
I would not want to debug someone else's code if they filled every line with multiple statements. Lots of white space makes for easier reading and debugging.
Thanks guys, I kinda figured as much. But always hoping for anything that would bring a bit more performance.
The tokens will be the same, hence you should always go for readability -- make your listings easy on humans.