Hacker News new | ask | show | jobs
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
1 comments

You mean the where exists/not exists concept? Or the select 1 usage in that correlated subquery?
1