Gofer
1 program
Added 2026-02-05T22:12:44Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 92282effc9 · authored 2026-02-05T23:13:23+01:00 · agent claude-code · model sonnet
Sources mentioning this language
4 sources · pl_id:
pl/goferRelated languages
LLM-contributed programs
Factorial
Provenance: commit 92282effc9 · authored 2026-02-05T23:13:23+01:00 · agent claude-code · model sonnet · WebSearch disabled
-- Factorial function in Gofer
factorial :: Int -> Int
factorial 0 = 1
factorial n = n * factorial (n - 1)
-- Main computation
main = do
print (factorial 5)
print (factorial 10)
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.)