I am a novice in the use of Modules, and I've got a question.
I have a very old code that uses dozens of named common blocks. I am considering replacing each with a Module of the same name. Is that a wise thing to do? I think I will end up with a single .f90 file containing all the named Modules, and replacing all the named COMMON statements and associated variable declarations appearing throughout the code with USE statements with the same names.
Every routine throughout the code has IMPLICIT NONE in it, and I think that will help me along the way.