summary refs log tree commit diff stats
path: root/nimpretty/tests/expected/simple2.nim
blob: 909ac48c370e9c3f6880e2a85fb98ff499682298 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# comment here
var x: int = 2

echo x

proc fun*() =
  echo "ok"
  ## doc comment
  # regular comment

proc funB() =
  echo "ok1"
  # echo "ok2"

fun()

#[
bug #9483
]#

proc funE() =
  echo "ok1"