How can I create a new function with a template so that the created function
has its function name prefixed? Something like:
template mytempl(prefix) =
proc $prefix & World() = echo "hello world"
Run
So that:
mytempl(hello)
Run
creates a function named "helloWorld"
