mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
13 lines
119 B
Nim
13 lines
119 B
Nim
discard """
|
|
file: "thintoff.nim"
|
|
output: "0"
|
|
"""
|
|
|
|
{.hint[XDeclaredButNotUsed]: off.}
|
|
var
|
|
x: int
|
|
|
|
echo x #OUT 0
|
|
|
|
|