2 lines
82 B
FSharp
2 lines
82 B
FSharp
let multiply x y = x * y // integer
|
|
let fmultiply (x : float) (y : float) = x * y
|