-I know this is a dumb question, but I hope someone will give some time to answer me on it...:cool: For what purpose do we have the modules?:confused:
Printable View
-I know this is a dumb question, but I hope someone will give some time to answer me on it...:cool: For what purpose do we have the modules?:confused:
Their main purpose is to store various things that are to be made global, i.e. the whole project can use it. Variables that are used throughout the entire project are stored here, as well as commonly used functions (or subs). An example of a function that may be made global is one that when called, returns the maximum value of an array passed into it.