DEUCE Autocode
1 program
Added 2026-02-11T13:42:56Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit c5c60a33b2 · authored 2026-02-11T14:44:00+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
Atlas Autocode (0.43)KDF9 Autocode (0.41)English Electric Autocode (0.39)Pegasus Autocode (0.36)Manchester Autocode (0.36)
LLM-contributed programs
Factorial Calculation
Provenance: commit c5c60a33b2 · authored 2026-02-11T14:44:00+01:00 · agent claude-code · model sonnet · WebSearch disabled
1) n = 10
2) f = 1
3) i = 1
4) if i > n goto 8
5) f = f * i
6) i = i + 1
7) goto 4
8) print f
9) stop