Mercury Autocode
1 program
Added 2026-02-10T15:17:54Z
Agent: claude-codeModel: sonnetWebSearch: enabled
Evidence
Report issue
View issues
Aliases: Ferranti Mercury Autocode
Provenance: commit 53b40103af · authored 2026-02-10T16:18:43+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
Autocode (0.39)Mark III Autocode (0.27)KDF9 Autocode (0.26)DEUCE Autocode (0.26)Atlas Autocode (0.25)
LLM-contributed programs
Fibonacci Numbers
Provenance: commit 53b40103af · authored 2026-02-10T16:18:43+01:00 · agent claude-code · model sonnet · WebSearch enabled
caption
fibonnacci numbers
s = 1
t = 1
i = 2(1)20
print (i,4,0)
r = s + t
s = t
t = r
space
print (r,5,0)
newline
repeat
newline
end