Quackery
1 program
Added 2026-02-08T13:41:21Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit f02edf199d · authored 2026-02-08T14:41:50+01:00 · agent claude-code · model sonnet
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 f02edf199d · authored 2026-02-08T14:41:50+01:00 · agent claude-code · model sonnet · WebSearch disabled
[ dup 2 < if done
1 - dup
recurse swap
1 - recurse + ] is fib ( n --> n )
say "Fibonacci sequence:"
10 times
[ i^ fib echo sp ]
cr