Mondrian
1 program
Added 2026-02-26T00:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit 74975f2bcc · authored 2026-02-26T06:03:48+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
3 sources · pl_id:
pl/mondrianWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Designed by | Martin Theus |
|---|---|
| First appeared | 1997 |
| License | GNU GPL 3+ |
| Homepage | http://www.theusrus.de/Mondrian/ |
Related languages
LLM-contributed programs
Factorial
Provenance: commit 74975f2bcc · authored 2026-02-26T06:03:48+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
module Main
fact :: Int -> Int
fact 0 = 1
fact n = n * fact (n - 1)
printFact :: Int -> IO ()
printFact n = putStrLn (show n ++ "! = " ++ show (fact n))
main :: IO ()
main = mapM_ printFact [0..10]
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.)