summary refs log tree commit diff stats
path: root/nimpretty/tests/simple2.nim
blob: 4ef2ddd70e34eae3ba92d0b63fc1b76d7082fc6c (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"