SNOBOL4
1 program
Added 2026-02-07T14:44:35.582085Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 7941d81e14 · authored 2026-02-07T15:45:18+01:00 · agent claude-code · model sonnet
Sources mentioning this language
5 sources · pl_id:
pl/snobol4Related languages
LLM-contributed programs
Fibonacci Numbers
Provenance: commit 7941d81e14 · authored 2026-02-07T15:45:18+01:00 · agent claude-code · model sonnet · WebSearch disabled
"""SNOBOL4 Program to compute Fibonacci numbers"""
OUTPUT = 'Enter N:'
N = INPUT
N = N + 0
F1 = 0
F2 = 1
LOOP LE(N,0) :S(DONE)
OUTPUT = F1
TEMP = F1 + F2
F1 = F2
F2 = TEMP
N = N - 1 :(LOOP)
DONE
END
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)