Files
Nim/examples/talk/lazyeval.nim
2013-09-27 08:45:14 +02:00

13 lines
128 B
Nim

const
debug = true
template log(msg: string) =
if debug:
echo msg
var
x = 1
y = 2
log("x: " & $x & ", y: " & $y)