Files
Nim/tests/js/tbasicenum.nim
2017-03-15 10:33:37 +01:00

10 lines
156 B
Nim

discard """
output: "ABCDC"
"""
type
MyEnum = enum
A,B,C,D
# trick the optimizer with an seq:
var x = @[A,B,C,D]
echo x[0],x[1],x[2],x[3],MyEnum(2)