Roger Firth's IF pages | ![]() |
InfLight -- Inform debugging | ![]() |
![]() |
To end with, here are a few nuggets of advice on how to solve (or better, avoid) problems. In no particular order...
if (conditionA)
if (conditionB)
statement1;
else
statement2; statement3; |
if (conditionA)
if (conditionB)
statement1;
else
statement2;
statement3;
|
And that's all we've got time for...