Lily
1 program
Added 2026-02-07T14:37:33Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 69860c4a37 · authored 2026-02-07T15:38:22+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/lilyRelated languages
LLM-contributed programs
Fibonacci Sequence
Provenance: commit 69860c4a37 · authored 2026-02-07T15:38:22+01:00 · agent claude-code · model sonnet · WebSearch disabled
define fibonacci(n: Integer): Integer
{
if n <= 1: {
return n
else:
return fibonacci(n - 1) + fibonacci(n - 2)
}
}
# Print first 10 Fibonacci numbers
for i in 0...10: {
print("fibonacci({0}) = {1}".format(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.)