|
|
|
|
|
by funnymony
971 days ago
|
|
Its a matter of your eyes being used to this. If for ten years you always indented the code this way Void F()
{ Foo();
Bar();
Baz();}
Then following snippet will seem hard to parse mentally: Void F()
{
Foo();
Bar();
Baz();
}
And vice versa |
|