Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

F# on Mono for Android

I bought Mono for Android from Xamarin and am very impressed so far except I would really like to use F# instead of C#. Has anyone managed to get F# running using this tool?

like image 810
J D Avatar asked Nov 17 '12 10:11

J D


1 Answers

Since F# has gone open-source you can compile the FSharp.Core.dll against the Mono framework.

The F# compiler source code is here http://fsharp.github.com/fsharp/

Here are some instructions on how to get this working with Mono for Android

Basically you reference the Mono for Android mscorlib.dll and the FSharp.Core.dll that you compiled against the Mono framework from your F# project.

like image 146
Alex Wiese Avatar answered Sep 19 '22 12:09

Alex Wiese