• Buttons@programming.dev
    link
    fedilink
    English
    arrow-up
    32
    ·
    20 hours ago

    Fortran is still a good language for some purposes I think.

    And I feel the same way, C++ tries to solve the problem of having too many features by adding more features.

    • Troy@lemmy.ca
      link
      fedilink
      arrow-up
      11
      arrow-down
      1
      ·
      20 hours ago

      Don’t get me wrong. There is still a time and a place for Fortran. And this will also likely always be the case for C++. But I’m not sure it is entirely wise to choose it if you’re creating a new project anymore.

      • Valmond@lemmy.world
        link
        fedilink
        arrow-up
        4
        ·
        15 hours ago

        You might be right, but I have heard that song a lot of times, python, java, ml, pascal, obscure webdev.languages, AI will do it, typescript, etc etc etc

        I’d go with a better python than rust, you can put that “once in a lifetime asm optimized memsafe multi threaded code” in a package and just use it from python. But python has GIL and you can’t just remove it so who knows what will be the next shiny thing? Probably several languages, like for easy peasy stuff up to hardcore multi threaded memory safe stuff. Gotta push us oldtimers out in some way, right :-) ?

      • Clay_pidgin@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        7
        arrow-down
        1
        ·
        17 hours ago

        I’m barely competent at programming. What is the use case for Fortran, besides maintaining ancient code?

        • lad@programming.dev
          link
          fedilink
          English
          arrow-up
          10
          ·
          15 hours ago

          A lot of computational heavy tasks for science were done in Fortran at least ten years ago (and I think still are). I was told that’s mainly because Fortran has a good deal of libraries for just that, and it was widely taught in academia so this is a common ground between the older and newer generations.

          I think it may be gradually superseded by Python, but I don’t know if it is

          • Troy@lemmy.ca
            link
            fedilink
            arrow-up
            8
            ·
            11 hours ago

            A lot of the underlying libraries in python are actually written in Fortran (or were when they were conceived, and the Fortran components later replaced). Numpy, for example, was originally pretty much a wrapper on top of BLAS and LAPACK.