SFTRAN
1 program
Added 2026-02-12T12:14:35Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Structured FORTRAN
Provenance: commit d192a5b564 · authored 2026-02-12T13:15:10+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Factorial Program
Provenance: commit d192a5b564 · authored 2026-02-12T13:15:10+01:00 · agent claude-code · model sonnet · WebSearch disabled
PROGRAM FACT
INTEGER N, I, RESULT
WRITE(6,*) 'ENTER A NUMBER:'
READ(5,*) N
RESULT = 1
DO I = 1, N
RESULT = RESULT * I
END DO
WRITE(6,*) 'FACTORIAL IS:', RESULT
STOP
END