In my code I've module M = Implementation1
and then I reference M
, instead of Implementation1
. The problem is, I've to recompile my program to change Implementation1
to Implementation2
. I'd like to control which implementation to use from with a command line parameter. Is that possible?
Is the situation simpler, when all implementations share signature?