summary refs log blame commit diff stats
path: root/tests/gensym/tgensym.nim
blob: e33a2783ffe3bd43a2e726457d4ae49f4af49d48 (plain) (tree)
1
2
3
4
5
6
7



                  
                        

                








           
discard """
  output: "123100"
"""

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

var x = 100

hygienic 1
hygienic 2
hygienic 3

echo x