Are commas optional when declaring enumerated types? The following compiles and
runs fine for me:
type
Color = enum
red blue green purple
let col : Color = Color.red
echo col
- Enum types: Commas optional? dmux
