Garnet
1 program
Added 2026-02-28T19:06:40Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 7008cca23f · authored 2026-02-28T20:07: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 7008cca23f · authored 2026-02-28T20:07:21+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
-- Format:
-- status: success
-- Compile:
-- status: success
--
-- Run:
-- status: success
-- stdout: 21
fn fib(x I32) I32 =
if x < 2 then x
else fib(x-1) + fib(x - 2)
end
end
fn main() {} =
__println(fib(8))
end