I have a question. A few days ago I'm creating an application with a GUI interface to show movie schedules. It was built in modules, for example a module takes care of the images, searching the web and downloading. Another module takes care of other information like searching for synopses, budgets of the films, actors. Another, takes care of picking up schedules and information from the cinema and another from the GUI.
My question is, how to interconnect these modules? Because not everything in the module is within function. The imaging module lowers the movie covers by means of a for outside a function.
How do I make my main module run all module code? Should I make everything turn function?
This project is being done just to help me learn. Thanks in advance!)