Elchemy
1 program
Added 2026-02-13T09:11:06Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 8af29d3279 · authored 2026-02-13T10:11:49+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
Provenance: commit 8af29d3279 · authored 2026-02-13T10:11:49+01:00 · agent claude-code · model sonnet · WebSearch disabled
module Main exposing (..)
fibonacci : Int -> Int
fibonacci n =
case n of
0 -> 0
1 -> 1
_ -> fibonacci (n - 1) + fibonacci (n - 2)
main : Int
main =
fibonacci 10