mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
16 lines
164 B
Nim
16 lines
164 B
Nim
discard """
|
|
output: '''-1abc'''
|
|
"""
|
|
|
|
var
|
|
a {.compileTime.} = 2
|
|
b = -1
|
|
c {.compileTime.} = 3
|
|
d = "abc"
|
|
|
|
static:
|
|
assert a == 2
|
|
assert c == 3
|
|
|
|
echo b, d
|