Futurebasic/Language/Reference/globals
GLOBALS
editSyntax
editGLOBALS "filename1" [,"filename2"...]
Description
editThis 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
editINCLUDE