summary refs log tree commit diff stats
path: root/tests/tenuminh.nim
blob: 02c71613bed573c5c497792e70ee14e4d12177a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
type
  TCardPts = enum
    North, West, South, East

  TCardPts2 = enum of TCardPts
    N, W, S, E

# If I do:
var y = W
echo($y & "=" & $ord(y)) #OUT W=5