option qbasic
Create a forward reference to functions
or subroutines.
Syntax:
option qbasic
This allow the routine to be referenced in code before it is actually
defined with function or sub statements.
Example:
option
qbasic
mysub()
end
sub mysub()
print
"this is my sub"
end sub