this post was submitted on 25 Sep 2023
441 points (99.3% liked)

Programming

16976 readers
165 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
 

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

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 7 points 11 months ago (1 children)

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

[–] [email protected] 5 points 11 months ago (2 children)

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?

[–] [email protected] 3 points 11 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.

[–] [email protected] 1 points 11 months ago

No. Not even close. It's more like a sequence of assignment and conditional statements.