That isn't what I wanted @kidandcat. To better explain my question:
proc importNewModule(module: string) =
import module # this is just for illustration, it won't work I know. How
do I do that?
something()
Run
And the module is something like this...
proc something() = echo Hi
Run
All I need to know is how do I import the module and use it in runtime.
