User Tools

Site Tools


finding_20the_20version_20number

Finding the version number

by Richard Russell, January 2010

You can discover the version number of BBC BASIC for Windows or BBC BASIC for SDL 2.0 using the following procedure:

        DEF FNversion
        LOCAL F%, V$
        F% = OPENOUT(@tmp$+"version.txt")
        OSCLI "OUTPUT "+STR$F%
        *HELP
        *OUTPUT 0
        PTR #F% = 0
        INPUT #F%,V$
        CLOSE #F%
        = RIGHT$(V$,5)

You can call the procedure in a context such as this:

        version$ = FNversion
        PRINT version$
This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.More information about cookies
finding_20the_20version_20number.txt · Last modified: 2024/01/05 00:22 by 127.0.0.1