
Returns the version number of the WIL Interpreter DLLcurrently running.
VersionDLL( )
(none)
(s) WIL Interpreter version number.
Use this function to determine the version of the WIL Interpreter DLL that is currently running. It is useful to verify that a WIL program generated with the latest version of the language will operate properly on what may be a different machine with a different version of the WIL Interpreter DLL installed.
ver = VersionDLL( )
If ver < "2.0a"
Message("Sorry", "WIL version 2.0a or higher required")
Exit
EndIf
Message("VersionDll", ver)