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