Press CTRL+C or CMD+C to copy the selected text and close this dialog.
Tweet
39 people like it. Like the snippet!
singleton pattern in F#
1: 2: 3: 4: 5: 6: 7: 8:
type A private () = static let instance = A() static member Instance = instance member this.Action() = printfn "action" let DesignPatter1() = let a = A.Instance; a.Action()