Shine
1 program
Added 2026-03-13T12:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 37745016fc · authored 2026-03-13T05:36:39+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
LLM-contributed programs
Fibonacci
Provenance: commit 37745016fc · authored 2026-03-13T05:36:39+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
-- Fibonacci sequence in Shine (a LuaJIT-based scripting language)
local function fib(n)
if n < 2 then
return n
end
return fib(n - 1) + fib(n - 2)
end
for i = 0, 10 do
print("fib(" .. tostring(i) .. ") = " .. tostring(fib(i)))
end