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