Which one of these is easier to find the error in and debug?
if(%testing)
{
%n = 15;
while(%n > 2)
{
%n--;
echo(%n);
}
if(%x < 3)
{
commandtoserver('love');
if(%y)
{
echo("!!");
}
}
else
{
%x = 3;
if(%y)
{
echo("Why?");
}
}
if(%testing){
%n = 15;
while(%n > 2){
%n--;
echo(%n);}
if(%x < 3){
commandtoserver('love');
if(%y){
echo("!!");
}}else{
%x = 3;
if(%y){
echo("Why?");}}
In the first one, you can see the gap in the indents and the whitespace. If I'd used Tab. With no indents and compressed lines in the second, it is a lot harder to find the source of the error.