Reactive ML

1 program Added 2026-03-12T00:09:08Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled Evidence Report issue View issues
Aliases: ReactiveML, RML
Provenance: commit a620efdfeb · authored 2026-03-12T01:09:45+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

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

Related languages

ReactiveML (0.83)Reason (0.27)FrTime (0.24)FRAN (0.21)CakeML (0.20)

LLM-contributed programs

Fibonacci

Provenance: commit a620efdfeb · authored 2026-03-12T01:09:45+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
code.rml · added: 2026-03-12T00:09:08Z
let rec process fibo n =
  pause;
  if n < 2 then
    1
  else
    let n_1 = run (fibo (n-1))
    and n_2 = run (fibo (n-2)) in
    n_1 + n_2

let process main =
   let n = run (fibo 30) in
   print_int n;
   print_newline()
; Gc.print_stat stdout

let () = run main

Contribute — propose a file extension

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