Oeuf
1 program
Added 2026-03-05T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 86316e4d93 · authored 2026-03-05T18:20:55+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 86316e4d93 · authored 2026-03-05T18:20:55+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
Fixpoint fib (n : nat) : nat :=
match n with
| O => O
| S O => S O
| S (S n' as m) => fib n' + fib m
end.