| Programming tools / Compiling source files | |
With the IMPORT FGL instruction, module symbols such as variables, types and constants can be referenced in the importing module.
IMPORT FGL myutils
IMPORT FGL account
MAIN
CALL myutils.init()
CALL set_account("CFX4559")
...
END MAIN