Kempe
1 program
Added 2026-02-11T14:03:42.432890Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit d1205e0446 · authored 2026-02-11T15:04:27+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 d1205e0446 · authored 2026-02-11T15:04:27+01:00 · agent claude-code · model sonnet · WebSearch disabled
; Factorial function in Kempe
; Computes factorial recursively
fact : Int -- Int
fact =
dup 1 <=
if( drop 1 )
{ dup 1 - fact * }
main : Int -- Int
main = 5 fact