DECLARE: Difference between revisions
Jump to navigation
Jump to search
Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link
(Created page with "In legacy versions such as Wikipedia:QBasic/Wikipedia:QuickBASIC the '''DECLARE''' keyword was used in the beginning of a program to declare the subroutines and functions used/defined in that program. Although this practice is still supported for compatibility with old code, it is no longer required in QB64, but instead it is used here to open a Library function block. {{PageSyntax}} : DECLARE LIBRARY {{PageSeeAlso}} * DECLARE DYNAMIC LIBRARY {{Page...") |
No edit summary |
||
(5 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
In legacy versions such as [[Wikipedia:QBasic]]/[[Wikipedia:QuickBASIC]] the '''DECLARE''' keyword was used in the beginning of a program to declare the subroutines and functions used/defined in that program. Although this practice is still supported for compatibility with old code, it is no longer required in QB64, but instead it is used here to open a Library function block. | In legacy versions such as [[Wikipedia:QBasic|QBasic]] / [[Wikipedia:QuickBASIC|QuickBASIC]] the '''DECLARE''' keyword was used in the beginning of a program to declare the subroutines and functions used/defined in that program. Although this practice is still supported for compatibility with old code, it is no longer required in QB64, but instead it is used here to open a Library function block. | ||
Line 7: | Line 7: | ||
{{PageSeeAlso}} | {{PageSeeAlso}} | ||
* [[ | * [[_OFFSET]] | ||
{{PageNavigation}} | {{PageNavigation}} |
Latest revision as of 22:59, 27 February 2024
In legacy versions such as QBasic / QuickBASIC the DECLARE keyword was used in the beginning of a program to declare the subroutines and functions used/defined in that program. Although this practice is still supported for compatibility with old code, it is no longer required in QB64, but instead it is used here to open a Library function block.
Syntax
See also