Core Erlang
1 program
Added 2026-03-13T07:38:18Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: Core-Erlang
Provenance: commit 4954290e75 · authored 2026-03-13T08:39:21+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 4954290e75 · authored 2026-03-13T08:39:21+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
module 'fib' ['fib'/1]
attributes []
'fib'/1 =
fun (_N) ->
case _N of
<0> when 'true' ->
0
<1> when 'true' ->
1
<_N1> when 'true' ->
let <_A> = apply 'fib'/1(call 'erlang':'-'(_N1, 1))
in let <_B> = apply 'fib'/1(call 'erlang':'-'(_N1, 2))
in call 'erlang':'+'(_A, _B)
end