summary refs log tree commit diff stats
path: root/examples/talk/lazyeval.nim
blob: 77d963834337643a9808dd12da4357c913a068f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
const
  debug = true

template log(msg: string) =
  if debug:
    echo msg
var
  x = 1
  y = 2

log("x: " & $x & ", y: " & $y)