mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-02 19:22:40 +00:00
13 lines
164 B
Nim
13 lines
164 B
Nim
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
|