vote up 6 vote down star
2

I can't seem to find a compiler/plugin for mono. Does one exist?

flag

5 Answers

vote up 2 vote down check

Yes, there's one. Check this out: F# for Mono

link|flag
vote up 4 vote down
  1. Go here and download the fsharp.zip
  2. Unzip it and open the created folder (currently "FSharp-1.9.6.2")
  3. Open the terminal and run ./install-mono.sh as root (On some systems, it is necessary to convert the newline characters in that script from CRLF to LF)

This will give you the basic functionality which means you will be able to run "mono fsi.exe" and compiled F# apps as "mono myApp.exe".

Usefull tips:

  1. It makes sense to create scripts for the compiler and F# interactive.

    /usr/local/bin/fsc

    #!/bin/sh exec /usr/bin/mono /usr/local/src/FSharp-1.9.6.2/bin/fsc.exe $@

    /usr/local/bin/fsi

    #!/bin/sh exec /usr/bin/mono /usr/local/src/FSharp-1.9.6.2/bin/fsi.exe $@

  2. F# interactive (fsi.exe) is trying to reference System.Windows.Forms by default so in order to run it WinForms support in Mono will be required

  3. fsi.exe works better in Xterm than in Gnome Terminal.

link|flag
vote up 2 vote down

You can download the F# zip file from Microsoft and then run (for example) "mono fsi.exe".

link|flag
vote up 1 vote down

What Piotr Zurek said is basically what i did to get F# and mono to work on Ubuntu 9.04, with the following comments:

  1. Rember to install WinForm support with Mono. Otherwise you can't start fsi.exe.
  2. ./install-mono.sh should be run with root privileges (sudo ./install-mono.sh).
  3. Gnome Terminal dosn't play well with fsi.exe. Start a normal xterm and run fsi.exe whithin that.
link|flag
vote up 1 vote down

Just beware, tail calls does not seem to work on Mono, so your application will probably run out of stack space rather quickly.

link|flag

Your Answer

Get an OpenID
or

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