RosettaCodeData/Task/Y-combinator/OCaml/y-combinator-4.ocaml
2023-07-01 13:44:08 -04:00

1 line
32 B
Text

let rec fix f x = f (fix f) x;;