diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-02-20 09:08:13 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-20 18:08:13 +0100 |
commit | e94a3e5fcd4f36f090520a859e587c6019ba296b (patch) | |
tree | 505109bd9b5ba1815131b64fabb91c8f9ec93703 /tools/heapdump2dot.nim | |
parent | bd199a8d31a6c93b0bde4526b3f9eb5f677625ce (diff) | |
download | Nim-e94a3e5fcd4f36f090520a859e587c6019ba296b.tar.gz |
move prelude so that `include std/prelude` also works (#17110)
* move prelude so that `include std/prelude` also works * add test
Diffstat (limited to 'tools/heapdump2dot.nim')
-rw-r--r-- | tools/heapdump2dot.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/heapdump2dot.nim b/tools/heapdump2dot.nim index 4cee6d674..6704cdfb0 100644 --- a/tools/heapdump2dot.nim +++ b/tools/heapdump2dot.nim @@ -1,5 +1,5 @@ -include prelude +include std/prelude proc main(input, output: string) = type NodeKind = enum |