Files
Nim/tests/enum/tenum.nim
2014-01-13 02:10:03 +01:00

9 lines
75 B
Nim

# Test enums
type
E = enum a, b, c, x, y, z
var
en: E
en = a