Disciple
1 program
Added 2026-02-13T09:37:47Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: DDC
Provenance: commit 764eddccab · authored 2026-02-13T10:38:52+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
Provenance: commit 764eddccab · authored 2026-02-13T10:38:52+01:00 · agent claude-code · model sonnet · WebSearch disabled
-- Factorial function in Disciple
module Main where
fac :: Nat# -> Nat#
fac n = case n of
0# -> 1#
_ -> n * fac (n - 1#)
main :: Unit
main = do
print (fac 10#)