blob: 5cc6f4960dead706786a4773577edb42f8a88224 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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
|