Pallene
1 program
Added 2026-02-10T14:07:24.815319+00:00
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 27ecb1f468 · authored 2026-02-10T15:07:50+01:00 · agent claude-code · model sonnet
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Fibonacci
Provenance: commit 27ecb1f468 · authored 2026-02-10T15:07:50+01:00 · agent claude-code · model sonnet · WebSearch disabled
-- Fibonacci function in Pallene
function fibonacci(n: integer): integer
if n <= 1 then
return n
else
return fibonacci(n - 1) + fibonacci(n - 2)
end
end
-- Test the function
function test(): integer
local result: integer = fibonacci(10)
return result
end