ANS Forth
1 program
Added 2026-03-12T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: ANSI Forth, Standard Forth
Provenance: commit cb00d0bd64 · authored 2026-03-12T23:37:07+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
Fibonacci Sequence
Provenance: commit cb00d0bd64 · authored 2026-03-12T23:37:07+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
: fib ( n -- fib )
dup 2 < if drop 1 exit then
dup 1- recurse swap 2- recurse + ;
: .fibs ( n -- )
0 do
i fib . space
loop cr ;
10 .fibs