Myrddin
1 program
Added 2026-02-06T08:20:38Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit a94810c455 · authored 2026-02-06T09:22:56+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/myrddinRelated languages
LLM-contributed programs
Fibonacci Numbers
Provenance: commit a94810c455 · authored 2026-02-06T09:22:56+01:00 · agent claude-code · model sonnet · WebSearch disabled
use std
const main = {
var i
for i = 0; i < 10; i++
std.put("{}\n", fib(i))
;;
}
const fib = {n
if n <= 1
-> n
;;
-> fib(n - 1) + fib(n - 2)
}
Real programs from Software Heritage
No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)