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)