Mira
1 program
Added 2026-02-26T00:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit b538586aae · authored 2026-02-26T05:55:07+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Quicksort
Provenance: commit b538586aae · authored 2026-02-26T05:55:07+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
qsort [] = []
qsort (a:x) = qsort [b | b <- x; b<=a] ++ [a] ++ qsort [b | b <- x; b>a]
main = show (qsort [3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5])