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)
Related languages
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
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