Files
Nim/tests/arc/dmodule.nim
2020-07-10 18:10:32 +02:00

24 lines
469 B
Nim

type
MinKind* = enum
minDictionary
minBool
MinValue* = object
case kind*: MinKind
of minDictionary:
symbols: seq[MinOperator]
else: discard
MinOperator = object
# remove this inline pragma to make it compile
proc `$`*(a: MinValue): string {.inline.} =
case a.kind
of minDictionary:
result = "hello"
for i in a.symbols:
result = "hello"
else: discard
proc parseMinValue*(): MinValue =
# or this echo
echo result