Name: Anonymous 2013-07-29 2:38
From Microsoft's `tutorial' project that comes with VS:
Can this be taken to mean that function arguments are separated by spaces? Feels like I'm missing something.
/// Compute the highest-common-factor of two integers
let rec hcf a b = // notice: 2 parameters separated by spaces
if a=0 then b
elif a<b then hcf a (b-a) // notice: 2 arguments separated by spaces
else hcf (a-b) b
// note: function arguments are usually space separatedCan this be taken to mean that function arguments are separated by spaces? Feels like I'm missing something.