diff options
author | Antonis Geralis <43617260+planetis-m@users.noreply.github.com> | 2023-06-08 17:52:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-08 22:52:24 +0800 |
commit | a3bbb7124053397c32bf5fca3022f1d45f2aac2f (patch) | |
tree | c59d3aa7a21447491550ace84cca0ba597319b07 /lib | |
parent | a4f9413a65b7aa77717bdad12156f92abe9ac2ed (diff) | |
download | Nim-a3bbb7124053397c32bf5fca3022f1d45f2aac2f.tar.gz |
Remove debug echo from with (#22047)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/std/with.nim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/std/with.nim b/lib/std/with.nim index 7d14a4100..8043a0b8a 100644 --- a/lib/std/with.nim +++ b/lib/std/with.nim @@ -46,4 +46,3 @@ macro with*(arg: typed; calls: varargs[untyped]): untyped = result = newNimNode(nnkStmtList, arg) underscoredCalls(result, calls, arg) - echo result.astGenRepr |