YForth
1 program
Added 2026-03-04T23:22:20Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled
Evidence
Report issue
View issues
Aliases: yforth
Provenance: commit 789f740f55 · authored 2026-03-05T00:22:57+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
Recursive Fibonacci
Provenance: commit 789f740f55 · authored 2026-03-05T00:22:57+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
\ == recursive version ==
: fib
dup 2 <= if
drop 1
else
dup 1 - recurse
swap 2 - recurse +
then ;
\ using:
10 fib .
\ == end of script ==