Files
linux-packaging-mono/external/api-doc-tools/mdoc/mdoc.Test/mdoc.Test.FSharp/Enumerations.fs

10 lines
168 B
Forth
Raw Normal View History

module Enumerations
// Declaration of an enumeration.
type Color =
| Red = 0
| Green = 1
| Blue = 2
// Use of an enumeration.
let col1 : Color = Color.Red