Futurebasic/Language/Reference/globals

From Wikibooks, open books for an open world
Jump to navigation Jump to search

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 GLOBALSis 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