Futurebasic/Language/Reference/globals
Appearance
GLOBALS
[edit | edit source]Syntax
[edit | edit source]GLOBALS "filename1" [,"filename2"...]
Description
[edit | edit source]This statement behaves identically as the INCLUDE
statement. The keyword GLOBALS
is maintained for backwards compatibility with earlier versions of FutureBasic. To make your program easier to read, you may typically use the GLOBALS
statement to include files which define global variables, constants, record structures, etc., while using the INCLUDE
statement to include functions, etc. However, the GLOBALS
statement and the INCLUDE
statement are completely interchangeable.
See Also
[edit | edit source]INCLUDE