Hi
I am rebuilding old code to use modules. In these modules are subroutines.
Often a subroutine will perform a similar function as
another sub in a different module. I would like to call these subroutines the same thing. For example : Output
If possible to do this,
How would I reference these subroutines?
For example, is something like this possible?
USE Mod1
USE Mod2
Call Mod1%Output(x)
Call Mod2%Output
Is so, what would the syntax actually be? Thanks.
I am rebuilding old code to use modules. In these modules are subroutines.
Often a subroutine will perform a similar function as
another sub in a different module. I would like to call these subroutines the same thing. For example : Output
If possible to do this,
How would I reference these subroutines?
For example, is something like this possible?
USE Mod1
USE Mod2
Call Mod1%Output(x)
Call Mod2%Output
Is so, what would the syntax actually be? Thanks.