vote up 2 vote down star

I'm sure this should be obvious, but how do i have a multiline static method in a class? i just can't figure it out...

flag

1 Answer

vote up 6 vote down check

Just write them in multiple lines. The compiler can infer the method-body per indentation.

type Example = class
  static member Foo a b = 
     // ...
     a + b
end
Example.Foo 1 2
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.