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