Myr
1 program
Added 2026-02-26T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit ef28fd282d · authored 2026-02-26T22:46:40+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
Myrddin (0.11)
LLM-contributed programs
Fibonacci
Provenance: commit ef28fd282d · authored 2026-02-26T22:46:40+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
use std
const fib = {n : uint64 -> uint64
if n <= 1
-> n
;;
-> fib(n - 1) + fib(n - 2)
}
const main = {
std.put("fib(10) = {}\n", fib(10))
}