mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-10 15:04:59 +00:00
10 lines
138 B
Nim
10 lines
138 B
Nim
# Test the new variable declaration syntax
|
|
|
|
var
|
|
x = 0
|
|
s = "Hallo"
|
|
a, b: int = 4
|
|
|
|
write(stdout, a)
|
|
write(stdout, b) #OUT 44
|