summary refs log blame commit diff stats
path: root/tests/varstmt/tvardecl.nim
blob: 5cc6f4960dead706786a4773577edb42f8a88224 (plain) (tree)
1
2
3
4
5
6
7
8
9



                      




                                           



                         

 
discard """
  file: "tvardecl.nim"
  output: "44"
"""
# Test the new variable declaration syntax

var
  x = 0
  s = "Hallo"
  a, b: int = 4

write(stdout, a)
write(stdout, b) #OUT 44