No description
Find a file
2020-02-22 21:20:19 +01:00
dbg.nim Signed-off-by: David Krause <david@code0.xyz> 2020-02-22 21:20:19 +01:00
dbg.nimble added simple timeIt template 2017-12-18 13:56:25 +01:00
LICENSE Initial commit 2017-08-22 01:37:54 +02:00
README.md Signed-off-by: David Krause <david@code0.xyz> 2020-02-22 21:20:19 +01:00

nimDbg

"dbg" template; in debug echo

template dbg*(args: varargs[untyped]) =
  ##like `debugEcho` but removed when compiled with -d:release
  when not defined release: debugEcho args

decho echos lineinfo, your statement and statements value

decho("foo" & "baa" & $123)
# >>> /home/david/nimDbg/dbg.nim(25, 22): "foo" & "baa" & $123 => foobaa123