lazyeval.nim 128 B

12345678910111213
  1. const
  2. debug = true
  3. template log(msg: string) =
  4. if debug:
  5. echo msg
  6. var
  7. x = 1
  8. y = 2
  9. log("x: " & $x & ", y: " & $y)