I have a module with a number of subroutines that all use the same set of formats for output. Right now, I have to declare the formats in every subroutine. Is there a way to declare them in the module so all the subroutines have access to them?
|
feedback
|
|
You can store the format as a character at the module level. E.g.
| |||
|
feedback
|