1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-07 18:00:24 +00:00
qb64/source/global/version.bas

8 lines
274 B
QBasic
Raw Normal View History

DIM SHARED Version AS STRING
DIM SHARED BuildNum AS STRING
2016-11-09 04:23:02 +00:00
DIM SHARED AutoBuildMsg AS STRING
2016-09-11 00:19:49 +00:00
Version$ = "1.1"
'BuildNum format is YYYYMMDD/id, where id is a ever-increasing
'integer. If you make a change, update the date and increase the id!
2016-11-09 04:23:02 +00:00
BuildNum$ = "20161109/50"