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