ReactiveML

1 program Added 2026-02-13T09:20:52Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: RML
Provenance: commit cd770c80b7 · authored 2026-02-13T10:21:13+01:00 · agent claude-code · model sonnet

Sources mentioning this language

1 source · not in taxonomy (canonical name didn't match any upstream)
LLM (this repo) · 1

Related languages

Reactive ML (0.83)Reason (0.25)ReasonML (0.23)FrTime (0.22)Reach (0.22)

LLM-contributed programs

Simple Counter

Provenance: commit cd770c80b7 · authored 2026-02-13T10:21:13+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.rml · added: 2026-02-13T09:20:52Z
(* Simple counter in ReactiveML *)
let process counter () =
  loop
    let c = ref 0 in
    loop
      pause;
      c := !c + 1;
      print_int !c;
      print_newline ()
    end
  end

let process main () =
  run (counter ())

let () = run (main ())

Contribute — propose a file extension

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