vote up 1 vote down star

I'm trying to figure out how to make static methods in a class in F#. Does anyone have any idea how to do this?

flag

2 Answers

vote up 5 vote down check

Sure, just prefix the method with the static keyword. Here's an example:

type Example = class
  static member Add a b = a + b
end
Example.Add 1 2

val it : int = 3
link|flag
Cool thanks! (filling characters) – RCIX Jun 13 at 9:16
vote up 4 vote down

Don't forget the online docs!

Methods

has this info, and

F# Language Reference

is a general good starting point to find info about the language syntax.

link|flag
Ypu, SOP for me is to scour the docs first to see if i can find a help there first. It averted at least one question! – RCIX Jun 14 at 5:34

Your Answer

Get an OpenID
or

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