Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Enumerations.fs « mdoc.Test.FSharp « mdoc.Test « mdoc - github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5b5a8bb50e280bc0361e3e70fa2bf703afc2a8f4 (plain)
1
2
3
4
5
6
7
8
9
10
module Enumerations

// Declaration of an enumeration.
type Color =
   | Red = 0
   | Green = 1
   | Blue = 2

// Use of an enumeration.
let col1 : Color = Color.Red