Ogú
1 program
Added 2026-03-17T00:25:13Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled
Evidence
Report issue
View issues
Aliases: Ogu
Provenance: commit df1fcef05d · authored 2026-03-17T01:25:40+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
2 sources · pl_id:
pl/ogRelated languages
LLM-contributed programs
Quicksort
Provenance: commit df1fcef05d · authored 2026-03-17T01:25:40+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
quicksort [] = []
quicksort (x :: xs) = smallerSorted ++ (x :: biggerSorted)
where
smallerSorted = quicksort [a | a <- xs, a <= x]
biggerSorted = quicksort [a | a <- xs, a > x]
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.)