mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-31 02:12:11 +00:00
16 lines
185 B
Nim
16 lines
185 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
|
|
|
|
|