iForth
1 program
Added 2026-03-12T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: i Forth
Provenance: commit c8855577e6 · authored 2026-03-12T01:20:46+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
Provenance: commit c8855577e6 · authored 2026-03-12T01:20:46+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
: fib ( n -- fib_n )
dup 2 < if drop 1 exit then
dup 1 - recurse
swap 2 - recurse
+ ;
10 fib .