Miranda

1 program Added 2025-11-02T17:07:13Z Model: google/gemini-2.5-proTemp: 0.4 Evidence Report issue View issues
Aliases: —
Provenance: commit 26911b0ee8 · authored 2025-11-02T18:07:13+01:00 · model google/gemini-2.5-pro

Sources mentioning this language

5 sources · pl_id: pl/miranda
LLM (this repo) · 1PldbWikipediaRosettacodeWikidata · Q780803

Wikipedia infobox

Pulled from the wikimedia/structured-wikipedia snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and pl_fact.csv for the long-table provenance.

Paradigmslazy · functional · declarative
Typingstrong, static
Designed byResearch Software Ltd · David Turner
First appeared1985
Influenced byKRC · ML · SASL · Hope
License2-clause BSD License
Homepagehttp://miranda.org.uk

Related languages

Mira (0.50)Mirah (0.33)Panda (0.33)Wanda (0.33)Amanda (0.31)

LLM-contributed programs

Sieve of Eratosthenes in Miranda

Provenance: commit 26911b0ee8 · authored 2025-11-02T18:07:13+01:00 · model google/gemini-2.5-pro · Temp 0.4
code.mir · license: GFDL 1.2 · added: 2025-11-02T17:07:13Z
|| Sundaram Sieve
sundaram n = [2*i+1 | i<-[1..n]]; (map (2*) (sundaram n)) ++ [2]
 
|| Eratosthenes Sieve
sieve [] = []
sieve (p:xs) = p : sieve [x | x <- xs; x mod p ~= 0]
 
primes n = sieve [2..n]
 
|| Main
shownumsl n = lay [[num n | n<-[s..e]] | (s,e) <- takewhile (\(s,e). s<=n) (map (\i.(i,i+9)) [1,11..])]
 
main = lay ["Sundaram Sieve:", shownumsl 100 (sundaram 100),
            "Eratosthenes Sieve:", shownumsl 100 (primes 100)]

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.)

Contribute — propose a file extension

Tell us where to find evidence about Miranda (mapped to pl/miranda). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/Miranda/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Mirah miranim →