Basically, the title is quite self-explanatory. I want to get a list of defined procs in an array and then (possiibly) call them by name.
e.g
let procs = getProcsFromModule("someModule")
and then be able to call them like:
callProc(procs[0])
# or...
callProc("someProc")
Given Nim's capabilities, I guess it's doable but I still cannot figure out how...