summary refs log tree commit diff stats
path: root/tests/misc/mjsondoc.nim
blob: e4642f0b490a81618dc4616064b259a81fcbab79 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
proc doSomething*(x, y: int): int =
  ## do something
  x + y

const
  a* = 1 ## echo 1234
  b* = "test"

type
  MyEnum* = enum
    foo, bar