Version$
Jump to navigation
Jump to search
Description
- This variable holds the development programs version.
Syntax
- PRINT Version$
Hints
- This variable is case sensitive, so version$ or VERSION$ are not the same as Version$.
- Version$ is a string variable because of the trailing dollar sign ($), so you can use string manipulation on it.
Example
Print Version$
For x = 1 to Len(Version$)
Print Left$(Version$, x)
Next
Useful Procedures
' Place a useful function or sub using this keyword here