mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
* remove echo statements * Update tests/vm/triangle_array.nim * Update tests/vm/tyaytypedesc.nim Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com> Co-authored-by: konsumlamm <44230978+konsumlamm@users.noreply.github.com>
12 lines
149 B
Nim
12 lines
149 B
Nim
var
|
|
a {.compileTime.} = 2
|
|
b = -1
|
|
c {.compileTime.} = 3
|
|
d = "abc"
|
|
|
|
static:
|
|
doAssert a == 2
|
|
doAssert c == 3
|
|
|
|
doAssert ($b & $d) == "-1abc"
|