Hi,
I have a question about modules.
I have to call many subroutines in my program and many arrays are passed to these Routines(up to 20):
PROGRAM main
CALL Sub1(a,b,c,d,e,f,g,h,i)
CALL Sub2(a,b,c,d,e,f,g,h,i)
CALL Sub3(a,b,c,d,e,f,g,h,i)
END PROGRAM
So i made a module, which contains all...