mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-01 02:42:05 +00:00
12 lines
203 B
Nim
12 lines
203 B
Nim
|
|
import macros
|
|
|
|
macro check(ex: expr): stmt =
|
|
var info = ex.lineinfo
|
|
var expString = ex.toStrLit
|
|
result = quote do:
|
|
if not `ex`:
|
|
echo `info`, ": Check failed: ", `expString`
|
|
|
|
check 1 < 2
|