Omega
1 program
Added 2026-02-11T13:10:53Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 1200b77c5a · authored 2026-02-11T14:11:28+01:00 · agent claude-code · model sonnet
Sources mentioning this language
3 sources · pl_id:
pl/omegaRelated languages
LLM-contributed programs
List Length Function
Provenance: commit 1200b77c5a · authored 2026-02-11T14:11:28+01:00 · agent claude-code · model sonnet · WebSearch disabled
-- Length function in Omega
data Nat = Zero | Succ Nat
length :: forall (a :: *) . [a] -> Nat
length [] = Zero
length (x:xs) = Succ (length xs)
-- Example usage
main = length [1, 2, 3, 4, 5]
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.)