Difference between revisions of "MC-Basic:IMPORT"
m (Miborich moved page Axystems:MC-Basic:IMPORT to MC-Basic:IMPORT: Global renaming of Axystems: namespace into (Main):) |
|||
Line 40: | Line 40: | ||
|SEE ALSO= | |SEE ALSO= | ||
* [[MC-Basic:FUNCTION ... END FUNCTION|FUNCTION ... END FUNCTION]] | * [[MC-Basic:FUNCTION ... END FUNCTION|FUNCTION ... END FUNCTION]] | ||
− | * [[ | + | * [[MC-Basic:PROGRAM ... END PROGRAM|PROGRAM ... END PROGRAM]] |
* [[Axystems:MC-Basic:SUB ... END SUB|SUB ... END SUB]] | * [[Axystems:MC-Basic:SUB ... END SUB|SUB ... END SUB]] | ||
[[Category:Axystems:MC-Basic:Libraries|IMPORT]] | [[Category:Axystems:MC-Basic:Libraries|IMPORT]] | ||
}} | }} |
Revision as of 08:39, 22 May 2014
Imports a library file into a task. To use a subroutine defined in a library file, the .lib file must first be imported at the top of the program and then called by one of its defined subroutines.
Syntax
Import <lib file name>
Availability
All versions
Scope
Task or Library
Limitations
Library must be loaded into memory (using load command).
Examples
Import lib1.lib
Program
call lib1sub(5) 'call one of lib1 subroutines
End Program