3 lines
81 B
OCaml
3 lines
81 B
OCaml
|
|
fun curry f x y = f(x,y)
|
||
|
|
(* Type signature: ('a * 'b -> 'c) -> 'a -> 'b -> 'c *)
|