Jorth
1 program
Added 2026-02-10T12:00:00Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 98c3fb40ab · authored 2026-02-10T19:22:14+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 Calculator
Provenance: commit 98c3fb40ab · authored 2026-02-10T19:22:14+01:00 · agent claude-code · model sonnet · WebSearch disabled
: factorial ( n -- n! )
dup 1 > if
dup 1 - factorial *
else
drop 1
then ;
5 factorial .