F# iOS Program: 39 lines of code
Xamarin loves F#!
Of course you can use F# to program iOS and Android applications using Xamarin and Visual Studio!
[code lang="fsharp"]
namespace Simple
open System
open MonoTouch.UIKit
open MonoTouch.Foundation
open System.Drawing
type ContentView ( color : UIColor ) as self =
inherit UIView ()
do
self.BackgroundColor \< - color
type SimpleController …
more ...