Name: Anonymous 2012-06-16 14:27
If your brace style looks like this
or this
or even worse, like this
you should get your eyes and limp dick burn with battery acid, you disgusting twat.
This is the one true brace style.
while (x == y)
{
something();
somethingelse();
}
finalthing(); or this
while (x == y)
{
something();
somethingelse();
}
finalthing();or even worse, like this
while (x == y)
{ something();
somethingelse();
//...
if (x < 0)
{ printf("Negative");
negative(x);
}
else
{ printf("Non-negative");
nonnegative(x);
}
}
finalthing();you should get your eyes and limp dick burn with battery acid, you disgusting twat.
This is the one true brace style.
if (x < 0) {
puts("Negative");
negative(x);
} else {
puts("Non-negative");
nonnegative(x);
}