It would be nice to be able to combine preexisting modules into one: ```go var modA = convgen.Module( //... ) var modB = convgen.Module( //... ) var modA = convgen.Module( convgen.ImportModule(modA), convgen.ImportModule(modB), ) ```
It would be nice to be able to combine preexisting modules into one: