mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
9 lines
75 B
Nim
9 lines
75 B
Nim
# Test enums
|
|
|
|
type
|
|
E = enum a, b, c, x, y, z
|
|
|
|
var
|
|
en: E
|
|
en = a
|