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/luau
LLM (this repo) · 1PldbLinguistPygmentsEsolang

Extensions 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.
ExtensionSourceStrengthSWH
.luaulinguistprimary3.3K files
.luaupygmentsprimary3.3K files

Related languages

Luan (0.18)Lua (0.14)ProbLog (0.14)LuaJIT (0.13)Luna (0.11)

LLM-contributed programs

Fibonacci Sequence Generator

Provenance: commit 3f2c53e7ce · authored 2026-02-08T16:40:49+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.luau · license: MIT · added: 2026-02-08T15:39:55Z
-- 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.)

Contribute — propose a file extension

Tell us where to find evidence about Luau (mapped to pl/luau). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Luau/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Luathon Lucee →