• OADINC
    link
    fedilink
    50
    edit-2
    10 months ago

    This is the only way;

    if (condition) {
        code
    }
    

    Not

    if (condition)
    {
        code
    }
    

    Also because of my dyslexia I prefer variable & function names like this; ‘File_Acces’ I find it easier to read than ‘fileAcces’

    • @[email protected]
      link
      fedilink
      English
      410 months ago

      I think it would be a much hotter take if you had the opposite opinion. I’ve only met a few of those.

    • @[email protected]
      link
      fedilink
      3
      edit-2
      10 months ago

      I’ve only seen the second type in C#, to be fair it makes code neater but i’m glad I left it for Java.

      • @[email protected]
        link
        fedilink
        210 months ago

        How does it make code neater? All it does is add a ton of empty vertical space. It makes files arbitrarily longer at essentially no benefit.

    • AItoothbrush
      link
      fedilink
      English
      210 months ago

      It depends for me. If the condition is some goofy ahh multiline syntax hell i like to use the second option.