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/jocamlWikipedia 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 | multi-paradigm: functional · imperative |
|---|---|
| Designed by | Inria |
| First appeared | 1999 |
| License | LGPL |
| Homepage | http://jocaml.inria.fr |
Related languages
LLM-contributed programs
Channel Communication Example
Provenance: commit a1dd73af16 · authored 2026-02-07T15:53:58+01:00 · agent claude-code · model sonnet · WebSearch disabled
(* 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.)