RosettaCodeData/Task/Y-combinator/OCaml/y-combinator-4.ocaml
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

1 line
32 B
Text

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