StrongForth
1 program
Added 2026-03-13T01:22:36Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Strong Forth
Provenance: commit 5b3b8ac2d1 · authored 2026-03-13T02:23:10+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Factorial
Provenance: commit 5b3b8ac2d1 · authored 2026-03-13T02:23:10+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
\ StrongForth: Factorial
\ Demonstrates statically-checked stack effects
: factorial ( n -- n )
dup 1 > if
dup 1 - recurse *
else
drop 1
then ;
: main ( -- )
5 factorial . cr
10 factorial . cr ;
main