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

1 line
62 B
Text

let fix f g = (fun x a -> f (x x) a) (fun x a -> f (x x) a) g