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)
Related languages
LLM-contributed programs
Simple Counter
Provenance: commit cd770c80b7 · authored 2026-02-13T10:21:13+01:00 · agent claude-code · model sonnet · WebSearch disabled
(* 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 ())