FORTRAN 66

1 program Added 2026-02-11T11:34:10Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: FORTRAN-66, ANSI FORTRAN 66
Provenance: commit 36b13a9eca · authored 2026-02-11T12:34:58+01:00 · agent claude-code · model sonnet

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

FORTRANSIT (0.35)Fortran (0.33)FORTRAN I (0.32)FORTRAN II (0.32)FORTRAN III (0.30)

LLM-contributed programs

Sum of Squares

Provenance: commit 36b13a9eca · authored 2026-02-11T12:34:58+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.f · added: 2026-02-11T11:34:10Z
C     PROGRAM TO COMPUTE SUM OF SQUARES
      PROGRAM SUMSQ
      INTEGER N, I, SUM
      REAL AVG
      DIMENSION ARRAY(10)
      DATA ARRAY /1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0/
C     INITIALIZE SUM
      SUM = 0
      N = 10
C     COMPUTE SUM OF SQUARES
      DO 10 I = 1, N
         SUM = SUM + ARRAY(I) * ARRAY(I)
   10 CONTINUE
C     COMPUTE AVERAGE
      AVG = FLOAT(SUM) / FLOAT(N)
C     PRINT RESULTS
      WRITE(6,20) SUM, AVG
   20 FORMAT(' SUM OF SQUARES = ', I5, ' AVERAGE = ', F8.2)
      STOP
      END

Contribute — propose a file extension

Tell us where to find evidence about FORTRAN 66 (mapped to pl/fortran_66). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/FORTRAN 66/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Fortran 2023 FORTRAN 77 →