Library |
Previous Next |
Library <LibraryFile> [, <VarFile>]
|
Part
|
Description
|
<LibraryFile>
|
Required. This is the file name of the library located in the \slibrary\
folder.
|
<VarFile>
|
Optional. If the library has a <VarFile>, this will declare the variables
automatically instead of requiring to declare them yourself.
|
' Without the <VarFile>
Library "example.s"
Dim a$ As String ' Required variable
from the library
Call ExamplePrint, "Hello World"
' With the <VarFile>
Library "example.s", "example.var"
Call ExamplePrint, "Hello World"
|
'example.var
DIM a AS STRING
|