summary refs log tree commit diff stats
path: root/tests/gensym/tgensym.nim
blob: e33a2783ffe3bd43a2e726457d4ae49f4af49d48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
discard """
  output: "123100"
"""

template hygienic(val) =
  var x = val
  stdout.write x

var x = 100

hygienic 1
hygienic 2
hygienic 3

echo x