Version$

From Liberty BASIC Family
Jump to navigation Jump to search
Supported in Just BASIC Supported in Liberty BASIC Not supported in Liberty BASIC 5 Not supported in Run BASIC

Description

This variable holds the development programs version.

Syntax

  1. 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