summary refs log tree commit diff stats
path: root/tests/varstmt/tvardecl.nim
blob: 37bc4bad7a86db55bb1ee5fc2177f87e1352b371 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
discard """
  output: "44"
"""
# Test the new variable declaration syntax

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

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