Helium
1 program
Added 2026-02-07T15:03:04Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit a6add7e522 · authored 2026-02-07T16:03:55+01:00 · agent claude-code · model sonnet
Sources mentioning this language
2 sources · pl_id:
pl/heliumRelated languages
LLM-contributed programs
Quicksort
Provenance: commit a6add7e522 · authored 2026-02-07T16:03:55+01:00 · agent claude-code · model sonnet · WebSearch disabled
quicksort :: [Int] -> [Int]
quicksort [] = []
quicksort (x:xs) = quicksort smaller ++ [x] ++ quicksort larger
where
smaller = [a | a <- xs, a <= x]
larger = [b | b <- xs, b > x]
main :: IO ()
main = print (quicksort [3, 1, 4, 1, 5, 9, 2, 6])
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.)