Luau
1 program
Added 2026-02-08T15:39:55Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Roblox Luau
Provenance: commit 3f2c53e7ce · authored 2026-02-08T16:40:49+01:00 · agent claude-code · model sonnet
Sources mentioning this language
5 sources · pl_id:
pl/luauExtensions claimed by this language
2 claims. Each row is one upstream assertion with its strength.
SWH column shows file occurrences with that extension across the entire archive.| Extension | Source | Strength | SWH |
|---|---|---|---|
.luau | linguist | primary | 3.3K files |
.luau | pygments | primary | 3.3K files |
Related languages
LLM-contributed programs
Fibonacci Sequence Generator
Provenance: commit 3f2c53e7ce · authored 2026-02-08T16:40:49+01:00 · agent claude-code · model sonnet · WebSearch disabled
-- Fibonacci sequence generator with Luau type annotations
type NumberArray = {number}
local function fibonacci(n: number): NumberArray
local result: NumberArray = {}
local a, b = 0, 1
for i = 1, n do
table.insert(result, a)
a, b = b, a + b
end
return result
end
local function printSequence(sequence: NumberArray): ()
for i, v in ipairs(sequence) do
print(string.format("F(%d) = %d", i - 1, v))
end
end
-- Generate and print first 10 Fibonacci numbers
local fib = fibonacci(10)
printSequence(fib)
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.)