7 lines
88 B
Nim
7 lines
88 B
Nim
|
|
template log(msg: string) =
|
||
|
|
if debug:
|
||
|
|
echo msg
|
||
|
|
|
||
|
|
for i in 1..10:
|
||
|
|
log expensive()
|