Zelus
1 program
Added 2026-02-13T09:12:42.961832Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit f582a50554 · authored 2026-02-13T10:13:08+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
Bouncing Ball
Provenance: commit f582a50554 · authored 2026-02-13T10:13:08+01:00 · agent claude-code · model sonnet · WebSearch disabled
(* A simple hybrid system: a bouncing ball *)
let hybrid ball(init_h, init_v) = (h, v) where
rec der h = v init init_h
and der v = -9.81 init init_v reset up(-.h) -> -.0.8 *. last v
let hybrid main() = () where
rec (h, v) = ball(10.0, 0.0)
and () = print_endline (string_of_float h)