• @noproblemmy@programming.dev
    link
    fedilink
    39 months ago

    Fearing a bit to say it but Haskell. I know that it is a different concept, but it’s not just that for me. The way the elements are separated, sometimes spaces sometimes symbols, makes it hard for me to understand how things are grouped, and what gets plugged into what.

    • @FizzyOrange@programming.dev
      link
      fedilink
      29 months ago

      I agree. OCaml too. I think there are several factors that lead to it being very difficult to read other people’s code:

      • Currying and lack of syntax in general means you have to be a human parser for basic things like “which part of the text is a function name? which bits are arguments?”. Often it’s impossible to tell without looking up the function definitions.
      • The functional style - while generally great - also makes it very tempting for people to write enormous heavily nested functions where the control flow is hard to follow. You sometimes get assignment expressions that are hundreds of lines long.
      • Haskel & OCaml feature global type inference. Programmers often omit explicit type annotations which very often means that function types are inferred as generic. This means you lose several huge benefits from static types. For example you can no longer look up the types that will actually be passed into the function, and inferring the authors intent is much harder. It also makes error messages way more confusing.
      • I don’t know why but Haskel and OCaml programmers love stupidly short identifiers.
      • They also abhor comments.
    • JackbyDev
      link
      fedilink
      English
      19 months ago

      Same here. The syntax is just different enough from the C family for it to totally scramble my brain.