• @Solrac@lemmy.world
    link
    fedilink
    723 months ago

    Finally, someone understands that Allman is not that great, and that Kernighan & Ritchie is the way to go. Also, Haskell, my guy, you good? Lisp, are you ok? Do I need to call your parents?

    • @gerryflap@feddit.nl
      link
      fedilink
      93 months ago

      I’ve written Haskell quite a bit, and I don’t fully understand why this is called Haskell style. Haskell code looks nothing like this, the syntax is completely different. For Haskell’s syntax I think it works fine, because I never noticed something weird. But this code in “Haskell style” looks absolutely insane

      • @t_veor@sopuli.xyz
        link
        fedilink
        113 months ago

        It’s sometimes called comma-leading style where you move all the special characters to the front of the line and it is exceedingly common in Haskell, possibly due to how Haskell treats significant whitespace. You’ve surely seen list definitions that look like this:

        someList =
          [ 1
          , 2
          , 3
          ] 
        

        or a data definition like this:

        data Color
          = Red
          | Green
          | Blue
          | RGB Int Int Int
          deriving (Show, Eq)
        

        or a list of module exports like this:

        module Foo
          { bar
          , baz
          , quux
          } 
        

        Or in a long function type declaration where the arrows are moved to the start of the line, or a record definition, etc. etc.

  • @Gork@lemm.ee
    link
    fedilink
    633 months ago

    All of those are heretical. The one True Language is Brainfuck, where the coding syntax for Hello World is

    ++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.

  • @blindsight@beehaw.org
    link
    fedilink
    54
    edit-2
    3 months ago

    idk, Allman is very readable. Easy to scan vertically to find the matching open brace. Not quite as vertically-space efficient as the best way, but it’s not offensive.

    • @hardware26@discuss.tchncs.de
      link
      fedilink
      83 months ago

      In my first ever programming class textbook was using Allman. Probably for this reason, it is easy for a beginner to match braces. It is a lot loss common industry to my knowledge.

      • @blindsight@beehaw.org
        link
        fedilink
        63 months ago

        I literally don’t understand. I’ve read your comment several times and I don’t know what you’re talking about. Sorry!

        Did you think I was saying that made Allman better than the best way? Because it’s easy to scan vertically the best way, too. It’s just also easy with Allman, so it’s not offensive.

        • ubergeek77
          link
          fedilink
          63 months ago

          I don’t think they were disagreeing with you, I think they were just trying to say:

          You shouldn’t need braces to be vertically aligned if your code is uniformly indented. Then you can easily see what code is paired together just by their indentation level.

          Of course this is not always true if you’ve got a bunch of crazy nested indentation pushing things off to the right.

      • @psycho_driver@lemmy.world
        link
        fedilink
        33 months ago

        If you use if (blah) { then when you fold your code you still see the { but not the closing } (I suppose some IDEs might be smart enough to do something about this, but when not it looks like your code has an overbite).

        And then you’ve got a mental disorder if you indent your opening and closing brace more than the statement spawning them.

        • JackbyDev
          link
          fedilink
          English
          43 months ago

          Yeah, I just don’t see why IDEs couldn’t make them all fold in the same way. It’s trivial. I don’t see it as a valid complaint.

      • @eupraxia
        link
        English
        15
        edit-2
        3 months ago

        as always, c++ lets us do better in breathtakingly elegant fashion:

        #\
        i\
        n\
        c\
        l\
        u\
        d\
        e\
         \ 
        <\
        i\
        o\
        s\
        t\
        r\
        e\
        a\
        m\
        >
        

        finishing out hello world is left as an exercise to the reader, but the advantages and superior performance of this format should be obvious

      • qaz
        link
        fedilink
        33 months ago

        I’ve seen some people who code like this

  • @barsoap@lemm.ee
    link
    fedilink
    23
    edit-2
    3 months ago

    Noone writes Haskell like that. People generate Haskell like that because layout syntax is a fickle beast to generate and outputting braces means you can make mistakes in layout without breaking things, the way the braces and semicolons are output emphasise how they actually don’t matter, they’re also easy to delete in a text editor.

    Also it matches up with other Haskellisms, e.g. lists:

    let foo = [ bar
              , baz
              , quux
              ]
    

    See how it’s immediately apparent that you didn’t miss a single comma? It’s also trivial to match up opening and closing brackets like that, even in deeply nested situations.

    Not doing that is actually my main pet peeve with Rust’s standard formatting.

  • @seth@lemmy.world
    link
    fedilink
    223 months ago

    Tab size should be 2 spaces, not 4. 4 is not any more readable and it’s a waste of screen real estate.

      • Superb
        link
        English
        73 months ago

        No syntax, only parentheses

        • 7heo
          link
          fedilink
          1
          edit-2
          3 months ago

          Hear me out: brainfuck, but with parentheses only.

          >    )))
          <    (((
          +    ())
          -    (()
          .    ()(
          ,    )()
          [    )((
          ]    ))(
          

          Hello world example:

          ()))(((()(())))(())(())))))()))))(()
          (()(()(()(()(((((())(((((()(()((((()
          (()(()))()))(()()()))))))))())()()))
          )))()(()(())())()))((()()))))(((((((
          ((((((()(())())())()((()(()(()(()(()
          (()()((((((((()()())))))))))))())()(
          

          Ancient aliens meme with the caption "LIPS!!"

          Python transpiler:

          #!/usr/bin/env python
          """Lipsfuck to brainfuck transpiler"""
          
          from sys import stdin
          
          OPS = {")))": '>', "(((": '<',
                 "())": '+', "(()": '-',
                 "()(": '.', ")()": ',',
                 ")((": '[', "))(": ']'}
          
          
          def main():
              """Obvious main procedure"""
              _d = ''.join(stdin.readlines()).rstrip('\n')
              for _op in [_d[x:x+3] for x in
                          range(0, int(len(_d)), 3)]:
                  print(OPS[_op], end='')
              print()
          
          
          if __name__ == "__main__":
              main()
          
    • flamingos-cant
      link
      fedilink
      English
      83 months ago

      What kind of monster writes lisp with the closing bracket on its own line.

  • @Chrumbs
    link
    183 months ago

    Allman is objective the correct choice

  • @Luvon@beehaw.org
    link
    fedilink
    143 months ago

    Allman or even horstmann I could still deal with, the rest would be difficult.

    Though none are as bad as whoever came up with right aligning all the brackets to make any code look like python until you spot the deranged line of brackets on the right…

    I cannot for the life of me find it now but the dude put it on GitHub

    • Azzy
      link
      fedilink
      243 months ago

      I found this from ~9 years ago on imgur, “A Python programmer attempting Java”

      • @Luvon@beehaw.org
        link
        fedilink
        23 months ago

        Haha ya that is probably it, looks great, just don’t read all the way to the right 😆