Comment on Over 65 years ago this month, researchers ran the first FORTRAN program
festus@lemmy.ca 1 year agoFortran was actually a pretty solid language, and I actually regularly use programs that still have pieces written in Fortran.
Comment on Over 65 years ago this month, researchers ran the first FORTRAN program
festus@lemmy.ca 1 year agoFortran was actually a pretty solid language, and I actually regularly use programs that still have pieces written in Fortran.
profoundlynerdy@programming.dev 1 year 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 1 year 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.
guleblanc@lemmy.world 1 year ago
No. Not even close. It’s more like a sequence of assignment and conditional statements.