I have a very simple question. I tried to google it, but to no avail.
I installed Mono and F# with Macports in OSX. There are some bugs in F# interactive, but still it's usable if you call it from emacs with F# mode.
Now, the problem is that although F# is there and works, even the simplest of libraries/functions are not available. For instance, the following code doesn't run, with the error that it can't find, neither sum, neither out:
let sumMultiples n =
[1..n]
|> List.filter (fun i -> (i%3 = 0 || i%5 = 0))
|> List.sum
let out = sumMultiples 999
printfn "%d" out
And the error given is:
test.fs(6,12): error FS0039: The value, constructor, namespace or type 'sum' is not defined.
test.fs(10,17): error FS0039: The value or constructor 'out' is not defined.
stopped due to error
What I'm I missing here?
fscorfsiin the terminal). Could you check if your code works in the newer version of F#? – pad Nov 19 '11 at 0:13Failed to install ctrl-c handler - Ctrl-C handling will not be available. Error was: Exception has been thrown by the target of an invocation.. Still, it looks like something is wrong with the f# package of MacPorts. – jbssm Nov 19 '11 at 1:06