FIG-Forth
1 program
Added 2026-03-17T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: FIG Forth, Forth Interest Group Forth
Provenance: commit 7fdf0bcaee · authored 2026-03-17T04:18:22+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 7fdf0bcaee · authored 2026-03-17T04:18:22+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
: FACT ( n -- n! )
DUP 2 < IF DROP 1 EXIT THEN
DUP 1- RECURSE * ;
: .FACTS ( n -- )
1+ 1 DO
I . ." ! = " I FACT . CR
LOOP ;
." Factorials 1 to 7:" CR
7 .FACTS