[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
QbasicFAQ_WhenToUseSubs
When should I use SUBs?
Back to QBasic FAQ Main Page.
Use SUBs any time you need to do some work repeatedly, or any time it can be used to save coding steps, or if you would like to separate a section of code from the main module. USE GOSUBs when you want to keep the work locally, and there isn't a need for passing parameters, or if the work needs access to variables that aren't shared.
The nice thing about GOSUBs is that you can use them inside SUB modules, effectively skipping to that module as if it where another program in itself.
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
QbasicFAQ_WhenToUseSubs
When should I use SUBs?
Back to QBasic FAQ Main Page.
Use SUBs any time you need to do some work repeatedly, or any time it can be used to save coding steps, or if you would like to separate a section of code from the main module. USE GOSUBs when you want to keep the work locally, and there isn't a need for passing parameters, or if the work needs access to variables that aren't shared.
The nice thing about GOSUBs is that you can use them inside SUB modules, effectively skipping to that module as if it where another program in itself.
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
