Zkl
1 program
Added 2026-02-10T19:07:39Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 56b9f8223c · authored 2026-02-10T20:08:18+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
LLM-contributed programs
Fibonacci Sequence
Provenance: commit 56b9f8223c · authored 2026-02-10T20:08:18+01:00 · agent claude-code · model sonnet · WebSearch disabled
fcn fib(n){
if(n<2) return(n);
return(fib(n-1) + fib(n-2));
}
println("Fibonacci numbers:");
foreach n in (10){
println(n,": ",fib(n));
}