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

echo x

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

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

fun()