Cyber
1 program
Added 2026-02-07T15:06:51Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit a06c8294d7 · authored 2026-02-07T16:07:38+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/cyberRelated languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit a06c8294d7 · authored 2026-02-07T16:07:38+01:00 · agent claude-code · model sonnet · WebSearch disabled
func fibonacci(n):
if n <= 1:
return n
else:
return fibonacci(n - 1) + fibonacci(n - 2)
for i in 0..10:
print "fibonacci({i}) = {fibonacci(i)}"
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.)