FutureBasic Logo

<<    Index    >> FutureBasic

globals   statement



Syntax
globals "filename1" [,"filename2"...]

Description
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
include