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