Seq
1 program
Added 2026-02-25T00:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: seq-lang
Provenance: commit 9487f154eb · authored 2026-02-25T19:13:08+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
3 sources · pl_id:
pl/seqExtensions claimed by this language
1 claim. 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 |
|---|---|---|---|
.seq | wikidata | primary | 292.1K files |
Related languages
LLM-contributed programs
Fibonacci
Provenance: commit 9487f154eb · authored 2026-02-25T19:13:08+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
def fib(n: int) -> int:
a, b = 0, 1
for _ in range(n):
a, b = b, a + b
return a
for i in range(10):
print(fib(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.)