mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
13 lines
128 B
Nim
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)
|