This is considered as the beginning of general-purpose programming. ( Image credits : NASA and MIT_CSAIL )

  • festus@lemmy.ca
    link
    fedilink
    English
    arrow-up
    7
    ·
    9 months ago

    Fortran was actually a pretty solid language, and I actually regularly use programs that still have pieces written in Fortran.

    • profoundlynerdy@programming.dev
      link
      fedilink
      arrow-up
      5
      ·
      9 months ago

      Out of curiosity, is a FORTRAN compiler at all self-bootsrapping in a manner akin to Forth? That is, you define a few primitives and then define the rest of the language in terms of those primitives?

      • WasPentalive@beehaw.org
        link
        fedilink
        arrow-up
        3
        ·
        9 months ago

        You don’t really change the compiler itself. You can build up libraries of your own subroutines and link in the ones you need in any particular program, just like you might in C.