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/mWikipedia infobox ↗
Pulled from the
wikimedia/structured-wikipedia
snapshot — see data/raw/wikipedia_pl_facts.*.jsonl and
pl_fact.csv for the long-table provenance.
| Paradigms | imperative · procedural |
|---|---|
| Typing | typeless |
| Designed by | Neil Pappalardo · Curt Marble · Robert A. Greenes |
| First appeared | 1966 |
| Influenced by | JOSS |
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.| Extension | Source | Strength | SWH |
|---|---|---|---|
.mumps | linguist | primary | 254 files |
.m | linguist | secondary | 46.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
(* 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.
| Rule | Ext | Kind | Predicates (truncated) |
|---|---|---|---|
h/linguist/.m/3 | .m | predicates | [{"kind": "any", "regexes": ["^\\s*;"]}] |