Files
Nim/tests/run/tvardecl.nim
2013-03-16 23:53:07 +01:00

16 lines
194 B
Nim

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