JoCaml

1 program Added 2026-02-07T14:52:59Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Jocaml
Provenance: commit a1dd73af16 · authored 2026-02-07T15:53:58+01:00 · agent claude-code · model sonnet

Sources mentioning this language

3 sources · pl_id: pl/jocaml
LLM (this repo) · 1WikipediaWikidata · Q4041852

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.

Paradigmsmulti-paradigm: functional · imperative
Designed byInria
First appeared1999
LicenseLGPL
Homepagehttp://jocaml.inria.fr

Related languages

HardCaml (0.27)MetaOCaml (0.25)HAML (0.23)Jaql (0.23)JTcl (0.23)

LLM-contributed programs

Channel Communication Example

Provenance: commit a1dd73af16 · authored 2026-02-07T15:53:58+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.ml · added: 2026-02-07T14:52:59Z
(* Simple channel communication in JoCaml *)

def put(x) & get() = reply x to get

let sender() =
  for i = 0 to 9 do
    put(i);
    Printf.printf "Sent: %d
" i;
    flush stdout
  done

let receiver() =
  for i = 0 to 9 do
    let value = get() in
    Printf.printf "Received: %d
" value;
    flush stdout
  done

let () =
  spawn sender();
  spawn receiver()

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 JoCaml (mapped to pl/jocaml). 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/JoCaml/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← jmsl joe-e →