CML

1 program Added 2026-02-26T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: Concurrent ML
Provenance: commit 6db8ff8578 · authored 2026-02-26T12:06:13+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

7 sources · pl_id: pl/m
LLM (this repo) · 1LinguistWikipediaEsolangHyperpolyglotRosettacodeWikidata · Q1882071

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.

Paradigmsimperative · procedural
Typingtypeless
Designed byNeil Pappalardo · Curt Marble · Robert A. Greenes
First appeared1966
Influenced byJOSS

Extensions claimed by this language

2 claims. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.mumpslinguistprimary254 files
.mlinguistsecondary46.5M files

Related languages

Concurrent ML (1.00)ConcurrentML (0.90)Concurrent C (0.52)Concurrent Pascal (0.48)Concurrent Haskell (0.46)

LLM-contributed programs

Concurrent Sieve of Eratosthenes

Provenance: commit 6db8ff8578 · authored 2026-02-26T12:06:13+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.sml · added: 2026-02-26T10:00:00Z
(* Concurrent Sieve of Eratosthenes in Concurrent ML
 * Demonstrates channel-based concurrency with synchronous events.
 *)
local
  open CML
in

(* Generate integers starting from 'start' on channel outCh *)
fun counter (start, outCh) =
  let
    fun loop n = (sync (sendEvt (outCh, n)); loop (n + 1))
  in
    loop start
  end

(* Filter out multiples of prime from inCh, forwarding rest to outCh *)
fun filter (inCh, outCh, prime) =
  let
    fun loop () =
      let
        val n = sync (recvEvt inCh)
      in
        if n mod prime <> 0
          then sync (sendEvt (outCh, n))
          else ();
        loop ()
      end
  in
    loop ()
  end

(* Print the first 'limit' primes using a concurrent sieve pipeline *)
fun sieve limit =
  let
    val naturals = channel ()
    val _ = spawn (fn () => counter (2, naturals))
    fun loop (inCh, count) =
      if count >= limit
        then ()
        else
          let
            val p = sync (recvEvt inCh)
            val _ = TextIO.print (Int.toString p ^ "\n")
            val outCh = channel ()
            val _ = spawn (fn () => filter (inCh, outCh, p))
          in
            loop (outCh, count + 1)
          end
  in
    loop (naturals, 0)
  end

fun main () = RunCML.doit (fn () => sieve 10, NONE)

end

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

Disambiguation rules

Linguist heuristic rules that predict this language when one of its claimed extensions is shared with another.
RuleExtKindPredicates (truncated)
h/linguist/.m/3.mpredicates[{"kind": "any", "regexes": ["^\\s*;"]}]

Contribute — propose a file extension

Tell us where to find evidence about CML (mapped to pl/m). 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/CML/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← cmix cmn →