Mecrisp
1 program
Added 2026-02-13T14:42:03Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Mecrisp-Stellaris, Mecrisp-Ice
Provenance: commit ef06fa70a9 · authored 2026-02-13T15:42: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 Calculator
Provenance: commit ef06fa70a9 · authored 2026-02-13T15:42:27+01:00 · agent claude-code · model sonnet · WebSearch disabled
: factorial ( n -- n! )
dup 1 > if
dup 1- recurse *
then
;
: test-factorial ( -- )
cr ." Factorial tests:" cr
6 0 do
i dup factorial
." " i . ." ! = " . cr
loop
;
test-factorial