Hello,
Does separating a user defined function from the main script onto another .au3 file considered acceptable as a best practice?
For example, I have defined functions for a SQLite database connections and stuff on the main file together with other defined functions with different functionalities having about hundreds of line together. I'm thinking of having it separated and create another file to have it included at the top part of the script instead of having it all inside the main file.
Basically separating structure from functions. Any thoughts?