mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
14 lines
190 B
Nim
14 lines
190 B
Nim
discard """
|
|
output: "x == 45ugh"
|
|
"""
|
|
|
|
template myAssert(cond: expr) =
|
|
when rand(3) < 3:
|
|
let c = cond.astToStr
|
|
if not cond:
|
|
echo c, "ugh"
|
|
|
|
var x = 454
|
|
myAssert(x == 45)
|
|
|