Ok, so I've been trying to get _all_ procs defined in a given module. Let's say in `myModule.nim` we have `proc proc1` and `proc proc2`.
How can I do something like this (at compile-time):
const myProcs = getProcsIn("myModule")
Run
and `myProcs` containing `[proc1, proc2]`?
I think it should be doable using macros, but I have no idea how...
