←back to thread

Fortran II Hypersource

(texdraft.github.io)
79 points texdraft | 3 comments | | HN request time: 0.417s | source
Show context
fsckboy ◴[] No.42173921[source]
you buried the lede in the lead, where it links:

See also LISP 1.5

https://texdraft.github.io/lisp-1.5/listing.html

finally! being able to take the actual CAR and CDR!

replies(1): >>42174328 #
1. aap_ ◴[] No.42174328[source]
CAR here and CDR just below: https://texdraft.github.io/lisp-1.5/listing.html#line-7626
replies(2): >>42176111 #>>42176751 #
2. fsckboy ◴[] No.42176111[source]
thanks for finding that, i love it!
3. nyrikki ◴[] No.42176751[source]
For those not familiar with these old IBM machines that used decrementing of the index registers, this will help explain all the ??D instructions are there.

https://bitsavers.org/pdf/ibm/704/24-6661-2_704_Manual_1955....

Another lens for the FORTRAN case specifically, in the modern way we tend to say Fortran arrays are 'one' indexed, looking at this old code it is sometimes useful of thinking of it as a limit index, pulling from n-1 -> n. Or at least I found that useful for myself when digging into some of this a long time ago.